Showing posts with label Random notes. Show all posts
Showing posts with label Random notes. Show all posts

Wednesday, February 9, 2011

Random comments

Each object has methods, properties and events.

Ctrl KC = comment out lines
Ctrl KU = un-comment lines

Do (while first)-
x = 1
Do while x < 10
x += 1
Loop

Do (while last) -
x = 1
Do while x < 10
x += 1
Loop while x < 10

For -
Dim n as Integer
for n = 2 to 10 step 2 - counts by 2, you can also do -2 to count backwards

Next

For each

While x < 10

End while