Access variable through multiple forms

Nathan1k9

New member
Joined
Jun 7, 2007
Messages
2
Programming Experience
Beginner
In my program i have 5 different forms, i need to be able to access this one variable through any of these to add/subtract from the variable. How can i do this?

Any help is good, Thanks
 
Add a module to the project.
At the top of the module,
public myvar as single

You can now access myvar from any form in the project
 
Back
Top