I\'m programming a desktop application similar to Google desktop but with my own gadget with vb.net 2008 how can i make my application when the user install it on their comp
A simple method
Imports Microsoft.Win32 ... Dim regKey As RegistryKey regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run",True) regKey.SetValue(Application.ProductName, Application.ExecutablePath) regKey.Close()
Hope it helps