
Compiling the DLL's into the executable?
Quote:
> I would like to make a VB 5.0 App that does not depend on the huge VB 5
> runtime file. Is there a way to compile the needed DLL's into the
program.
It could easily be done if DLL's where provided as object modules. A static
linker would then produce the executable file that would include both those
object files and your app object file. Unfortunately, it would be a HUGE
executable, with no real benefit. Think about this:
Your app's executable file is relatively small because it relies on
services provided by VB5 DLL's. And so do ALL the VB5 based apps that you
might have on your HD.
This way, you may have a LOT of apps using ONE copy of the runtime files.