Link to home
Start Free TrialLog in
Avatar of Barb0400
Barb0400

asked on

Get current path

How can I get the path that my program is running from upon running my program?
ASKER CERTIFIED SOLUTION
Avatar of kuppachi
kuppachi

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Kalikanzaro
Kalikanzaro

You can get the path of your app with the standard function


strPath = App.Path

where strPath must be declared as string previously.

greetings.
same as kuppachi's comment...
Avatar of Barb0400

ASKER

Thanks