Caution About Declaring Multiple Variables on One Line
Caution: You can declare multiple variables on one line.
However, if you do not include the type for each variable, then Siebel
VB applies the type of the last variable to all the variables that
you declare on this line.
For example, the following code declares all of the following variables as strings:
Dim Acct, CustName, Addr As String