Embedded/nested? Variable

tomro1

Registered User.
Local time
Tomorrow, 00:18
Joined
Jun 12, 2006
Messages
23
Embedded/nested? Variable [Solved]

Hi All,

Is there some sort of internal variable or table that can be used to store temporary variables?

While running code you can obviously store data in variable, but once the code is done, the variable are dumped.

So I want to store some variable at some place in the vba or access that I can afterwards collect that variable again when I rerun my code.

Only way I know is to add it into a table, but is there some other, easier way?
 
Last edited:
registry is really useful for some things since it survives a re-release of the front end

savesetting ... inserts into the registry
getsetting .... retrieves.

foolproof
 
This is pretyy much the perfect solution that i needed.

Thanks alot Andyman!

The registry function is also very usefull, but in my case i do not have write permission on the registry.
But indeed a good thing to remember for the future!

Case closed I guess!
 

Users who are viewing this thread

Back
Top Bottom