29-08-20, 07:44 AM
للاقلاع مع الويندوز
لمسح الاقلاع
المصدر : https://www.codeproject.com/Answers/2533...he#answer2
كود :
'Write to register
Dim regKey As Microsoft.Win32.RegistryKeyregKey
regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", True)
regKey.SetValue("YourApplicationName", "YourInstallPath")
regKey.Close()لمسح الاقلاع
كود :
regKey.DeleteValue("YourApplicationName", False)المصدر : https://www.codeproject.com/Answers/2533...he#answer2

