setting general variables

Ankarn

Registered User.
Local time
Today, 09:06
Joined
Jul 4, 2008
Messages
81
Lets say i have variables that i want to be stored after i click buttons. So i cant declare them in the click of the button. I want the variables to excist from the start, and i am able to change them and get value from them when i click buttons.
The point is that i dont want to use a table for this, but i need it to be saved for a little while until i have made the report.

anyone know where to declare these variables?
 
Put it in MODULE.

Option Compare Database
Option Explicit
Public VariableName As .........
 
Thank you sir
 

Users who are viewing this thread

Back
Top Bottom