Overwriting instead of editing the registry
I try to overwrite a (Default) key in the registry but instead I add a key with the same name (so now I have two keys with the name (Default) wich is not what I want)
I do it like this:
SaveSettingString HKEY_CLASSES_ROOT, "blahbal", "(Default)", "blahblah"
Maybe "(Default)" is wrong and there is a special Const or something ?
thanx
Re: Overwriting instead of editing the registry
The Default Value of a Key is specified by "", eg.
SaveSettingString HKEY_CLASSES_ROOT, "blahbal", "", "blahblah"
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Re: Overwriting instead of editing the registry
where do you guys get the SaveSettingString from? I couldn't find a reference to that anywhere in the documentation.
Re: Overwriting instead of editing the registry
I found it on the net somewhere...