Dec 15, 2003 #1 traxxas Programmer Dec 11, 2003 15 US how do i go about writing values to registry and getting it again for example i want to save the text in textBox1 and when the prog is started up again it will load the text from the registry to the text box how will i go about doing this?, thanks guys
how do i go about writing values to registry and getting it again for example i want to save the text in textBox1 and when the prog is started up again it will load the text from the registry to the text box how will i go about doing this?, thanks guys
Dec 15, 2003 #2 teriviret Programmer Dec 12, 2003 288 US There are lots of ways to access the registry. One way is to use the Platform SDK. Click here for a list of the registry functions you can use: http://msdn.microsoft.com/library/en-us/sysinfo/base/registry_functions.asp Upvote 0 Downvote
There are lots of ways to access the registry. One way is to use the Platform SDK. Click here for a list of the registry functions you can use: http://msdn.microsoft.com/library/en-us/sysinfo/base/registry_functions.asp
Dec 15, 2003 #3 Cagliostro Programmer Sep 13, 2000 4,226 GB Look for these functions: RegOpenKeyEx/RegQueryValueEx/RegSetValueEx/RegCreateKeyEx... Ion Filipski Upvote 0 Downvote