Hey Ash,
The first answerer is correct.
those are the basic steps to learn in VB.
MORE
For any program, you write in VB, you must bear in mind that VB holds data only during runtime. So when you close the program, all the data are lost.
A typical example is the calculator program that u find on your computer.
If u had to solve the ff eqn:
12% of $28000 x 23
You enter the numbers one after the other but each time you press the sign key, the numbers disappear but its stored TEMPORARILY somewhere to be used for the next number.
DIM
This is how DIM (variables ) work.
In VB, variables are used to store values temporarily or throughout the runtime of the program.
Dim myAge as Integer
Dim myName as String
Integer means a whole number value from 1 - 32000
eg: myAge = 22
String could be letters, words or sentence usually enclosed with " " in most earlier versions of VB
eg: myname = "Ash Barbara"
boolean means TRUE or False - usually used to present the result of a conditional statement.
most times, boolean value are used to represent properties of the VB form.
eg; me.enabled = True
chkbox.checked = False
There are couple of books you could use that explains in the most simple way. One of them is VB5.0 by Mac Graw Hill. Or you use the Help menu on the VB program with the MSDN page.
MORE
One thing about these variables is u loose them once u close the program
Take for example, u make a program for a storekeeper.
The strekkeper enters the sold items, the costs and enters the amount paid, so that your programs calculates the balance and adds the items to a stock list.
All the items you enter during runtime is lost once you end the application.
********************Special NOTE*************************
U seems to ave a great desire learning VB.
Anyway VB 6 is one of the best programming langs aroung simply because it has a GUI where u ca see what u are designing and just put some codes to it. But Microsoft has since dropped the idea of VB6 and made new programs such as VB 2005 and next Visual Studio.NET, developed on the .NET Framework 2.0
These are exciting programs langs that u can learn and its full of new ad latest technologies of todays sotware environment.
If u're not yet too deep in VB 6.0, I'll advise u to get up with visual studio.NET.
It comes with powerful tools such as classes, OOP object oriented programming, integrable databases and OLEs to build from simple application to web interfaces and database APIs.
I can help u with some articles and some programs including the MSDN network where you can chat and get info from co-software developers around you while building your own application.
my chat is prenticehalls@yahoo.co.uk
I can chat u up starting from 9.00am