How to write in registry
-
How can i create a folder/file in registry and how can I write in the registry file?
Regards, Qaiser Nadeem
-
How can i create a folder/file in registry and how can I write in the registry file?
Regards, Qaiser Nadeem
using Microsoft.Win32; ------........................ RegistryKey rsub = Registry.CurrentUser;//under currrent user rsub.CreateSubKey("abc"); RegistryKey r = Registry.CurrentUser.OpenSubKey("abcd", true); r.SetValue("sdate", DateTime.Now.Date.ToShortDateString()); r.SetValue("version", "00-0000"); -..........................
Hari
-
How can i create a folder/file in registry and how can I write in the registry file?
Regards, Qaiser Nadeem
Do not cross-post. Your other similar duplicated post in C# forum has already getting responses: http://www.codeproject.com/script/comments/forums.asp?msg=2163581&forumid=1649#xx2163581xx[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Do not cross-post. Your other similar duplicated post in C# forum has already getting responses: http://www.codeproject.com/script/comments/forums.asp?msg=2163581&forumid=1649#xx2163581xx[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips