Re: [RESOLVED] App.Path??
App.Path is the path to the directory in which running exe resides.
so in your code you put:
VB Code:
Open App.Path & "\myfile.txt" For Input As #1
or whatever.
Is that what you were asking?
Re: [RESOLVED] App.Path??
I was messing around and figured it out
Open App.Path & "U-CUT3.t" For Output As #iOutputFile
Re: [RESOLVED] App.Path??
app.path will give you the installed path of your project. you dont need to put the path for each computer.
Re: [RESOLVED] App.Path??
Thanks for the quick reply
Re: [RESOLVED] App.Path??