Hello . . . :D
I need some help on registry.
I like to add some keys with their values to registry and that it is easy. I already have do that. Now i need to know how to check if the key that i'm trying to add already exists. Is any way to see if the key exists before i try to write on it
Thanks a lot . . . :D

Registry Key . . . ? ? ?
Robert Sanchez
Jasonval2005
Dim key As RegistryKey = Registry.LocalMachine.OpenSubKey("Software\CompanyName\MyApp\Settings")
If key Is Nothing Then
Debug.Print("Does not exist")
End If
GutRipper