snowboardr
Programmer
I have noticed in a few peoples post that they dim there variables using multiple lines. Such as this:
Dim Str_mystring1
Dim Str_mystring2
Well you can make it easier on yourself, and make your page shorter by diming on the same line like this:
Dim Str_mystring1, Str_mystring2, Str_...
and so on..
-Jason
Dim Str_mystring1
Dim Str_mystring2
Well you can make it easier on yourself, and make your page shorter by diming on the same line like this:
Dim Str_mystring1, Str_mystring2, Str_...
and so on..
-Jason