Things learned in lesson:
Welcome to lesson 3. First of all, I will teach you about Strings. Strings are a "string" of charactors like "abcdefg". It could be one letter or a whole sentence. Options Explicit is something that you type at the WAY top of the code THE FIRST LINE. It means to not use any variables that are not declared. For Loops are basically loops. It goes like this: For (any dimmed integer like x)=0 To (how many times it loops (every time it loops the integer you put in after for is plus one until it reaches the number it's supposed to go To)) and you put Next (the dimmed integer (x)) at the end of what's supposed to loop. Here's a simple program.
Options Explicit
Dim name As String
Dim i As Integer
Private Sub Form_Load()
name = "Jason"
For i = 0 To 5
Print "Hi " & name
Next i
End Sub
Hey now you know how to do it!lesson 4.
Goto...