
How to release VB app on CD?
Quote:
>I've written a very simple little app. One form, 4 buttons that each
>execute a Shell("\app\prog.exe" , 1) type command. I want to release this
>app on a CD.
>When I did this in VB3, I just needed to include the VBRUN300.DLL file.
>When I look in the docs for VB4, it tells me to use Setup Wizard.
>I don't want to make an install set, I just want the app to run from a CD
>on a users machine that doesn't have all the VB DLL's installed.
>I ran through the Setup Wizard to find out which files I need to include
>with my app. Setup Wizard says I need to include 27 files with my
>installation set, 27! That's 5.5megs worth of Dlls to execute a tiny
>application? Hopefully I'm just missing something simple here?
>Anyone know the answer to this hopefully easy question?
>I would really appreciate an email, although I do read this newsgroup.
>Thanks,
>--
Delete all of the VBX's in your project list. It won't let you delete
the ones you're actually using. As long as they're in the list, setup
thinks you need them. Also, make sure you don't have any Declares in
your code that you're not actually using (e.g. if you included the
winapi.bas with all of those declares, setup will think you need them.
--
Joel Cornell