I want to create a registry entry when the user presses Alt F6 F6
Could someone give me an example of house to do this?
I'm playing with this code
Code:'Adds registry entry when Alt + F6 + F6 is pressed If e.Alt And e.KeyCode.ToString = "F6" And e.KeyCode.ToString = "F6" Then Dim regKey As RegistryKey regKey = Registry.LocalMachine.OpenSubKey("Software\MyApp", True) regKey.SetValue("Wizard", "1089018919810") regKey.Close()




Reply With Quote