A school application help please

  • Thread starter Thread starter Totti
  • Start date Start date
T

Totti

Hi all,
i m in the process of learning VB by myself, and actually i bought a
book called "programming business applications with VB 6.0."
in this book there is an exercise or a project where they are asking
about a college or school application and in the CD compagning the
book they provide a Database written in access. that in the end will
be talking to the final VB that the learner will make.
I know there are many people who are willing to help on this forum and
thanks for so, as a start i would like to ask if anyone can provide me
or tell me where can i find a flowshart to study it and actually
understand what the problem is about and how shall i approach it since
the DB is predefined and the data modelling shall be done according to
the DB i assume. is there any usefull resource i may use? and where i
can find information on how such a problem can actually be solved, how
should i analyse the solution first and then start working on it
 
Totti said:
Hi all,
i m in the process of learning VB by myself, and actually i bought a
book called "programming business applications with VB 6.0."

Why do you buy a book about a language that is more than 10 years old and
has been superseeded by four newer versions since then?

This group is about the .Net versions (see "dotnet" in the group name). VB6
("classic") questions fit best into one of the microsoft.public.vb.* groups.

in this
book there is an exercise or a project where they are asking about a
college or school application and in the CD compagning the book they
provide a Database written in access. that in the end will be
talking to the final VB that the learner will make.

I don't understand the statement that the database will talk to the VB. Do
you mean the application written in VB will access the database?

I know there are many people who are willing to help on this forum
and thanks for so, as a start i would like to ask if anyone can
provide me or tell me where can i find a flowshart to study it and
actually understand what the problem is about [...]

Yes, what is the problem? :-) You can tell us the problem and we will try to
point you in the right direction. But as written above, the other groups are
a better place to ask.


Armin
 
There is a difference between VB6 and VB.NET.

This group is actually for VB.NET.

If you have a choice, you should go with VB.NET. VB.NET is a later
replacement (upgrade?) from VB6.

VB6 is also called "Classic VB".

ADO.NET is the technology that vb.net (and c#) use to talk to databases.

If you determined to stick with vb6, there is a different newsgroup for
that, FYI.
 
Actually you are all right and
at any rate if you have any ideas where to go get a flow chart or an
info about this task that might be helpful so i may understand better
what is happening. as long as i havent started coding VB or VB.net
oranything are the same
 
Actually you are all right and


at any rate if you have any ideas where to go get a flow chart or an
info about this task that might be helpful so i may understand better
what is happening. as long as i havent started coding VB or VB.net
oranything are the same

You're best bet would be to get on Google and look for a tutorial on
accessing databases from Visual Basic .Net.

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/
 
Totti said:
Actually you are all right and

That's not right. The newsgroups I mentioned are still busy. Merely
m.p.vb.general.discussion has ~20 new threads in the past 3 days.
i understand it was my fault buying this book but you know what i ve
bought it now and i d like to take soem profit out of it > not throe it
away.

I understand this.
and actually you were very right about the DB should be accessed by the
application.
at any rate if you have any ideas where to go get a flow chart or an
info about this task that might be helpful so i may understand better
what is happening. as long as i havent started coding VB or VB.net
oranything are the same

Usually I'd say: Buy a good book. ;-)

So, if you have specific questions the groups mentioned are the right place
to ask. Though, people here might also try to help, including me.

Sorry if I say this, but if you have really no clue where to start or what
to do, you should better start with a simpler task. Database programming was
one of the things I've learned after several years of programming before.


Armin
 
A generic database access tool, such as MS Access, will usually provide some
means of visualising the data structures. You should look around for a tool
or utility that enables you to browse the database, and if it doesn't
generate some form of mapping for you, at least you can draw up your own as
you browse.
 
Back
Top