Just a quick question....
Not really a fundamental one, just a general yes or no...
ya know how ifs work...
Or
is it possible to construct a "queue" of things to do in a single line?
for example
Just curious, i often prefer the one line IF for short IF's (i think it looks tidier?)
Dan
Not really a fundamental one, just a general yes or no...
ya know how ifs work...
Code:
If Something = True Then
Do something
End if
Code:
If Something = True Then Do something
for example
Code:
If Something = True Then Do something; Do something else
Dan
Comment