I have been making a wallpaper changer, and have made it to a large extent.
Now I want to add some customizable options in the program, Like the search
path for image files for the wallpaper, and whether the program should change
the wallpaper at logon.
1. Do you think that saving this information in the Windows registry will
be a good idea?
2. What are the api to access and change keys in the registry? A link to an
MSDN page would be helpful.
Thanks,

Signature
Sushovan, a crazy junior
Lars-Inge T?nnessen [VJ# MVP] - 17 Feb 2005 21:03 GMT
> 1. Do you think that saving this information in the Windows registry will
> be a good idea?
I think that's old-fashioned. I would have used an xml file. That would be
more maintainable and deployable in the long run. Easyer to make an
installer and uninstaller.
> 2. What are the api to access and change keys in the registry? A link to
> an
> MSDN page would be helpful.
Here is something I wrote a year a go.
http://www.codecomments.com/archive295-2004-3-160636.html
You will find the registry api in this namespace:
Microsoft.Win32.RegistryKey
Cheers,
Lars-Inge T?nnessen