Aug 29, 2000 #1 Webrookie Programmer May 18, 2000 112 US Hey, in VB it's App.path in Foxpro it's curdir() what is it in Delphi? I want to get the main path of the application from where the executable is run... any ideas?
Hey, in VB it's App.path in Foxpro it's curdir() what is it in Delphi? I want to get the main path of the application from where the executable is run... any ideas?
Aug 29, 2000 Thread starter #2 Webrookie Programmer May 18, 2000 112 US Nevermind I found it Application.exename; Upvote 0 Downvote
Aug 31, 2000 #3 matrixcd IS-IT--Management Apr 3, 2000 13 US Try using the API call GetCurrentDirectoryA(max_path,CurDir); Upvote 0 Downvote
Aug 31, 2000 #4 zallen Programmer Aug 10, 2000 227 CN try: ExtractFilePath(Application.ExeName); Upvote 0 Downvote