Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help. Using INNO script to create an install package

Status
Not open for further replies.

faxpay

Programmer
Nov 30, 2004
119
0
0
US
I am using INNO to create an install package. The install goes fine except the installed .exe is not looking for the application files in the installed app directory.
It looks in the dir that Visual Studio created when I designed the app.

I understand that I have to write code within my app to direct it to look in the installed application dir. Can anyone give me some sample code, in Visual Basic, on how to do that? And is the code a Win32API function?

I have never done this before and have never written an API function. I have been unable to find any help on the net.

Thank You,
faxpay Tom
 

You can use Application.StartupPath():

Dim sFileName As String = Application.StartupPath() & "\<<file name here>>"


I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson

Arrrr, mateys! Ye needs ta be preparin' yerselves fer Talk Like a Pirate Day!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top