The information in this article applies to:
SUMMARY
It is possible to use the SaveSetting statement to create nested levels of
keys and values in the Registry. This behavior is desirable in some cases.
Simply using the syntax for GetSetting supplied in the documentation and online help does not allow for this functionality. MORE INFORMATION
You can create nested levels in the Registry by using this syntax:
SaveSetting "TestApp", "Test2\Test3", "TestVal", "TestSetting" This will create a section of the Registry that looks like:
This will only work with the 32-bit version of Visual Basic. If the same line of code is executed with Visual Basic 4.0 16-bit, the result will be a file named TESTAPP.INI, with the following section:
To retrieve values stored in the Registry like this, use the same syntax with the GetSetting function. Some restrictions are inherited when creating nested keys with SaveSetting. DeleteSetting and GetAllSettings do not work in the same fashion as they do with non-nested keys. Additional query words: kbVBp400 kbVBp500 kbVBp600 kbVBp kbdsd kbDSupport kbRegistry kbVBA
Keywords : kbGrpVB |
Last Reviewed: January 5, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |