How do I change a defalut value in reg? I have tried using "@" as a key name or (Default) as the key name, but it would just create a new key with that name.
Thanx.
Printable View
How do I change a defalut value in reg? I have tried using "@" as a key name or (Default) as the key name, but it would just create a new key with that name.
Thanx.
I assume you're using the API's, just pass an empty string in the Valuename parameter to specify the "{Default}" value, i.e.VB Code:
Call RegSetValueEx(lRegKey, "", 0&, 1, ByVal sData, Len(sData))