In VB, I am used to using App.Path to get the path to my currently executing VB exe file. I am having trouble finding an API call to do the same for my PB8 exe file. Any suggestions would be welcome.
Thanks,
Bob
Thanks,
Bob
#Compile Exe #Dim All #Include "Win32Api.inc" Function PBMain() As Long Local szBuffer As Asciiz*256 Local dwSize As Dword dwSize=256 GetModuleFileName(%NULL,szBuffer,dwSize) Print "Path = "szBuffer Waitkey$ PBMain=0 End Function
szBuffer = Left$(szBuffer, Instr(-1, szBuffer, ANY "\/")-1)
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment