Adding value to registry...
-
how can I adda a value to registry keys and modify taht value(I know Microsoft.Win32.registrykey has some functions but i can not find any method for adding value)
-
how can I adda a value to registry keys and modify taht value(I know Microsoft.Win32.registrykey has some functions but i can not find any method for adding value)
Microsoft.Win32.Registry.CurrentUser.CreateSubKey(name); CreateSubKey opens an existing subkey, or creates it.
-
how can I adda a value to registry keys and modify taht value(I know Microsoft.Win32.registrykey has some functions but i can not find any method for adding value)
Hi, You can find a nice article about C# and the registry here in Codeprojec,t I think Nish was the one who wrote it. HTH Braulio
-
Microsoft.Win32.Registry.CurrentUser.CreateSubKey(name); CreateSubKey opens an existing subkey, or creates it.
-
Sorry, I thougt he meant adding keys. For setting or creating values there is SetValue - doesn't it create the value, if it's not there?
-
how can I adda a value to registry keys and modify taht value(I know Microsoft.Win32.registrykey has some functions but i can not find any method for adding value)