I am trying to create a program that the user must run the .exe from his/her desktop... If they try to run it from somewhere else i would like to have the .vbs pop up file I created to show up telling them to place it on the desktop. I have already made the program and it works fine, but people can't read the instructions, so I thought this might be a good approach. Unfortunatley, I am having trouble with it and I am going nowhere. If someone could help me, that would be greatly appreciated.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
I don't really understand why you'd want to do this but you could check in Main to see if the app was run from the Desktop
|
|||
|
|
|
If you need to do something from the perspective of the person's Desktop (such as where to store files relative to the desktop), you can just query that location and use it as basis of any subsequent work.
|
|||
|
|
|
I'm with Conrad on not being sure why you want to do this. But if you are talking about putting the exe on the desktop and executing from there (as opposed to a shortcut) then you should be able to use Assembly.GetExecutingAssembly().Location and compare it to the users desktop location with System.Environment.GetFolderPath(Environment.SpecialFolder.Desktop) |
|||
|
|