Once again Its still failing to write:S
This is what im using:
Code:'//////////////////////////////////////////////// 'WRITING APP TO THE REGISTRY '//////////////////////////////////////////////// InstallLog("Writing Game to Registry") Dim regKey As RegistryKey regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE", True) regKey.CreateSubKey("Pointblanc") regKey.Close() If My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE", _ "Pointblanc", Nothing) Is Nothing Then InstallLog("Failed to write to registry.") Else InstallLog("Writing to registry successfull.") End If




Reply With Quote