[HELP] Startup[Solved]
how would i make my program run on startup???????
My.Computer.Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", True).SetValue(Application.ProductName, Application.ExecutablePath)
System.IO.File.Copy("source", "destination" [whether you want it overridden or not here in true or false])
Dim File As String = "source" Dim Copy As String = "destination" If System.IO.File.Exists(File) Then System.IO.File.Copy(File, Copy) ElseIf System.IO.File.Exists(Copy) Then End If


