How to use global parameters

A

arnicot

Along a suite of programs, I need to use in several requests and/or
forms the same date (for example).
Where can I store it?
Is the only solution to use a special table, dedicated for parameters?
Is there a kind of "global" parameters class usable by several program
steps?
Thanks in advance.
 
W

Wayne Morgan

1) You can use a special table.

2) You could write the value to the Windows Registry.

3) You could use a temporary file.

4) You could create a user defined Property for the mdb file and store the
value in the property.

There are probably other ways depending on what exactly you're trying to
accomplish.
 
G

Guest

you could store it in a hidden lable caption on an open
form or a hidden text box. the form must remain open to
use it.
 
Top