QUOTE(alapidus @ Jan 23 2005, 03:29 AM)
speaking of the hardcode... another question: is there any difference between the syntax of qbasic and that of visual basic?
differences are in OBJECT level of programing...in Visual Basic you have objects.
So you are programing in OOP (Object Oriented Programing). Like you have form, so you say in VB:
form1.show=true
or form1.enabled=true
form1 is object, show or enabled is atributes of object...and so on if u get the picture..In simple BASIC like QBASIC you have just variables and functions, and that's it...and you make calls for functions, and u use variables...
In Visual basic you have also predefined functions, and globals, and of course same old variables...In addition you get object and u work with object witch are stored in programing language like some sort of classes (In C), and that 'quazi classes' or 'so called classes' are using atributes to define the object that they making... so GENERALY...

speaking hardcore, differences are LOT, but it's very easy to use to it, and MAN u will like it to make your first program VISUAL.
I suggest you to learn VB, and then to try other sort of VISUAL languages like VISUAL C, or JBUILDER (for java)..

Reply