Just recently I've started with Microsoft Visual Basic 2010 Express and I am creating an application which loads a URL into the browser component.
One of the settings that the user is able to configure is to 'start the app when windows launches'. When this checkbox is checked and the user saves his preferences I create a shortcut in the microsoft startup folder so the application is ran when windows starts up.
I do so using the following code:
My.Computer.Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", True).SetValue(Application.ProductName, Application.ExecutablePath)
Dim startup As String = Environment.GetFolderPath(Environment.SpecialFolder.Startup)
IO.File.Copy(Application.ExecutablePath, startup & "\ApplicationName.exe")
The problem is, than when I use the the shortcut that Visual Basic makes on install, located on the desktop or start menu programfolder, it loads the settings defined by the user. But when the shortcut from the startup folder is ran, it loads a completely 'new' application sort of, with all the settings on default.
Anybody that knows what I might be doing wrong? I've searched the internet alot and also looked on StackOverflow topics like copying app shortcut to startup folder VB (which didn't work for me)
Any help would be highly appreciated. If you need more info, please ask and I'll look it up asap.