How do you find out where the form is located on someone's computer so that i can load something that comes with the form.
Thanks
Printable View
How do you find out where the form is located on someone's computer so that i can load something that comes with the form.
Thanks
If I understand your question, you can't. If you are having problem loading a form because you don't have the proper controls in your project, take a look at the myform.log file and it will tell you what it is looking for.
Thats not quite what I mean. When a person takes my program they put it into a folder on their computer( such as C:\Windows) I would like to know through code, what that folder is. I hope that helps.
Thanks
using the App.Path command will get the current path where the form (application) is loaded
open App.Path & "\filename.ext" for etc....
or whatever your using it for...
Is that what you mean?