Computer Science Canada

Basic Intro To VB

Author:  KeNNy [ Wed Nov 20, 2002 6:29 pm ]
Post subject:  Basic Intro To VB

oh no.. I'm not writing it, lol.
I was hoping one of you experienced VB programmers could make a basic tutorial for it. Does VB have a program that you write the code it? Like turing has winoot. Thanx in advance, your support is greatly appreciated.

Author:  Tony [ Wed Nov 20, 2002 10:57 pm ]
Post subject: 

umm... yes... it is called Visual Basic 6. Or you can get it as a Visual Studio package (which also includes visual C++ and other).

As a matter of fact, you already have VB installed on your computer as macros in Word and other MS Office applications are all writen in VB.

Author:  rdrake [ Sun Jun 22, 2003 9:25 pm ]
Post subject: 

You can also find a free visual basic compiler here. I don't like to use it but it's free.

Author:  ¿§¥JÃ¥mës¥§¿ [ Thu Oct 23, 2003 2:07 pm ]
Post subject:  Question

I have a very basic question. So I make a button. How do I make it go to the next page when you hit the buttun?

Author:  Tony [ Thu Oct 23, 2003 3:10 pm ]
Post subject: 

code:

formName.show


this will pop up your "formName" form. You can close it by using
code:

.hide
or unload... depending on the case

Author:  ¿§¥JÃ¥mës¥§¿ [ Fri Nov 14, 2003 12:58 pm ]
Post subject: 

Thanks Tony that was what I needed. Now I need to know how to us those little check boxes. IS there an if statment like thing in VB?

Author:  Tony [ Fri Nov 14, 2003 2:27 pm ]
Post subject: 

yes Confused
code:

if checkbox.value = 1 then

print "stuff"

end if

Author:  ¿§¥JÃ¥mës¥§¿ [ Sat Nov 22, 2003 1:13 pm ]
Post subject: 

Hey whats with the Confused face was it really such a stupid question? Anyway thanks thats all I needed 8)


: