Thanks vince for all your support.
I see reading over my comments a potential point of confusion.
Colons, these : are used to separate 2 statements on one line of code.
"Print:" is not a command it is Print statement with another following right after the colon on the same line above.
Hey what do you think the following will do?
I see reading over my comments a potential point of confusion.
Colons, these : are used to separate 2 statements on one line of code.
"Print:" is not a command it is Print statement with another following right after the colon on the same line above.
Hey what do you think the following will do?
Code: (Select All)
For i = 1 To 100
Print ;
Next
Print "Hello"
b = b + ...