Link to home
Start Free TrialLog in
Avatar of xorcrack
xorcrack

asked on

VB6 Setup

I am using the Visual Basic 6 Package and Deployment Wizard as an installer for my application.  I need my application to launch once the install is complete.  what is the easiest way to achieve this?

thanks.
ASKER CERTIFIED SOLUTION
Avatar of sirbounty
sirbounty
Flag of United States of America image

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
The Package and Deployment wizard is modifiable, the sourcecode is at: C:\Program Files\Microsoft Visual Studio\VB98\Wizards\PDWizard\Setup1
>>I need my application to launch once the install is complete
Try using Inno Setup, an user friendly installer generator, where you can assign the action to do after the installation is completed:

For more info, see:
http://www.jrsoftware.org/

cheers
Avatar of xorcrack
xorcrack

ASKER

i didn't want to have to reprogram the PD Wizard at all.  I was hoping that i could just modify a .ini or .lst file or something.  is that possible?
I agree with ryancys. I am using Inno setup and there are many more readymade options that you will get apart from launching your application to creating shortcuts etc. Have a look at this excellent installer.
"...i didn't want to have to reprogram the PD Wizard at all.  I was hoping that i could just modify a .ini or .lst file or something.  is that possible?..."

Yes. sirbounty gave you the answer. In your Win, click Start, select run, and key in: iexpress

This is a small win tool which allows you to create an installation file, using the P&D setup and cab, AND in addition, it lets you specify if you want to run any app before or after installation. It also allows you to add a license, etc... Try it. You don't need to recreate your P&D, just to use it as part of the new package.

S