What is the simplest vb code method for renaming a registry key?
Printable View
What is the simplest vb code method for renaming a registry key?
Is this for your VB Program's settings or something else¿
Why do you want to do it¿
It is for my VB program settings. The reason I need to do it is that I am changing the name of an application and would also like to change it in the registry without current users loosing their current settings.
After saving the new settings with a new application name, use the DeleteSetting() function and only pass the first parameter, it will delete all the application key and subkey.
JeffB