Placeing values in the registry for retrieival.

  • Thread starter Thread starter Centaur
  • Start date Start date
C

Centaur

Using Access Code

How are values/data placed into the registry

And how can these values be read at a later stage.


Thank you

Centaur
 
The VBA SaveSettings and GetSettings procedures give you a limited ability
to do this - check them out in online help,. Otherwise check www.mvps.org
for VBA code to wrap the relevant win32 API functions.

HTH,
TC
 
I usually create a one record table, and save values that way.

However, if you want to read/write values, then you can use the built in
commands savesetting, and getsetting.

(check them out in the help).

If you need more control...then check out:

http://support.microsoft.com/?id=145679
 
GetSetting SaveSetting

Also ask yr System Administrator whether
users have the ability to write to/read from the registry

Check the desktop registry policy, else y *will* have worked in vain

Krgrds,
Perry
 
Back
Top