- Home
·
- Registry
·
- A very simple way to add info to the registry and call it back into your application when needed an
A very simple way to add info to the registry and call it back into your application when needed an
A very simple way to add info to the registry and call it back into your application when needed and delete the entry aftawards.
Rate A very simple way to add info to the registry and call it back into your application when needed an
(2(2 Vote))
' Integer to hold counter.
' Place some settings in the registry.
SaveSetting appname:="MyApp", section:="Startup", _
Key:="Top", setting:=75
SaveSetting "MyApp", "Startup", "Left", 50
' Retrieve the settings.
MySettings = GetAllSettings(appname:="MyApp", section:="Startup")
For intSettings = LBound(MySettings, 1) To UBound(MySettings, 1)
Debug.Print MySettings(intSettings, 0), MySettings(intSettings, 1)
Next intSettings
DeleteSetting "MyApp", "Startup"
A very simple way to add info to the registry and call it back into your application when needed an Comments
No comments yet — be the first to post one!
Post a Comment