PDA

Click to See Complete Forum and Search --> : Easy Variables question


Smie
Jan 5th, 2000, 05:26 AM
What do I do to make my variables so I dont have to declare them in every one of my objects? I just have it set as

Dim variable

Thanks

Gimpster
Jan 5th, 2000, 05:29 AM
Declare the variable in a module. You just have to remember that when you do that, the variable becomes "smart". Meaning that if you assign the variable to be equal to the value "4" in one form and then go to use that variable in another form, the variable is still equal to "4".

------------------
Ryan


[This message has been edited by Gimpster (edited 01-05-2000).]