hello,
how do i remove from the registry i use the following code to add it to the registry
how do i remove from the registry i use the following code to add it to the registry
code Code:
Public Shared Sub AddToStartup() Dim regkey As RegistryKey regkey = Registry.CurrentUser.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", True) regkey.SetValue("ApplicationName", Application.ExecutablePath, RegistryValueKind.String) regkey.Close() End Sub