Things learned in lesson:
Hey there! You chose lesson 1. I will assume you don't know jack about Visual Basic (VB). If you do know jack about VB, then I guess you should go to lesson 2.
Ok. First things first. A form is the place where all the actions take place. It is like this program that you're using to view this page. The part you can see is the form. Forms can be any way you make it.
Here you can learn to make a simple program.
Private Sub Form_Load()
Print "Hi! (name)!"
End Sub
That is just a simple program that displays "Hi! (name)!" on the form. Let's take it apart...
private sub determines if the "sub" is private or public.
A sub a function that is loaded whenever the thing happens and in this example, Form_Load() is the thing. You can probably guess what Form_Load() does... IT IS WHEN THE FORM IS LOADING, or the very beginning of the program.
Print means show it. So if you typed
Print "This program is easy!"
, then the form will say "This program is easy!"
Now that you get the point, continue on to lesson 2.
Goto...