PDA

Click to See Complete Forum and Search --> : [RESOLVED] Diffrence between .exe / complete setup file


make me rain
Jan 2nd, 2009, 07:35 AM
In VB6.
What are the differences in distributing a application between
distributing only a .exe file / distributing a complete set up file.

si_the_geek
Jan 2nd, 2009, 07:47 AM
Just an .exe file might not work, and even if it does it may not work correctly and consistently (eg: you may get intermittent bugs if there is an old version of the runtimes installed).

A complete set up package will ensure it works.

make me rain
Jan 2nd, 2009, 08:03 AM
thank u for replay
that means if i reference some library's during design time or if i use some activex controls / addins all is going in to target machine
for eg:- using library reference instead of late bindings, using custom controls , calender controls.. etc
will work as good as it worked in my system during design time

si_the_geek
Jan 2nd, 2009, 08:16 AM
If you do a proper installation, the VB runtimes and any additional things your program needs (such as ActiveX controls etc) will be setup appropriately, and will work as they did on your computer.

make me rain
Jan 2nd, 2009, 08:32 AM
If any valuable articles / tutorials will give me more knowledge , thanks for your help

si_the_geek
Jan 2nd, 2009, 09:41 AM
The FAQ thread at the top of this forum has links to several useful articles.

dilettante
Jan 2nd, 2009, 11:54 AM
Note that even items you late-bind have to be deployed to target computers if they are not standard system components (like the FSO, CDO For Windows, MSXML, ADO, etc.).

If the target systems are ancient enough (older than Win2K SP4 or so) you might need to deploy some of these!