I have develop application that start at Windows start up. when I launch application by double clicking, it works fine. When run on windows start up, the application launch well but it cannot access any other files placed on application directory. I got that error 'The system cannot find the file specified'
my code:
Process.Start("file_name")
I used this registry key to start up:
HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"
.Net 3.0, Windows 7
What could be the problem ? and please suggest a solution.
thank you.