PDA

View Full Version : Multiple Programs compiled into one EXE.


voidgere
02-09-2005, 02:53 PM
I have several programs I want to compress into one exe. My goal is to have them run consecutively when I use the single exe. I also want the ability to choose which programs install.

I can get the software together and I can get the software to install but I cannot seem to get it to let me choose which programs to install. I am by far no guru on this software and have kinda been learning as I go.

Any pointers?

Adam
02-09-2005, 04:31 PM
You should use a screen to let the user decide which program(s) to install. A Checkbox screen would work well:

1) Create a checkbox screen
2) configure your 4 buttons to represent different software titles.
3) The real functionality of this screen is on the "actions" tab.
4) Go to the "On Next" event and enter code similar to this:


if check01 then
-- execute program 1
end

if check02 then
-- execute program 2
end


Hope this helps.

Adam Kapilik