Hi,
The easiest way is to use the Application() or Session() objects:
Application("GlobalVariableName") = "whatever you want"
Session("GlobalVariableName") = 12345
The difference between the two is that when you use Application() all users
will see whatever the variable is and when you change it they all see the
changes. With Session() the variable is unique for each user, so when you
change it for one user the other user still has the same value they had
before. Good luck! Ken.