|
-
August 12th, 2001, 11:52 AM
#1
App Installer Package
Hello together,
Could someone help telling me how to make an Installer package of my VB App that include all needed files to make it run properly on other Windows machines.
Thanks.
Askia.
-
August 13th, 2001, 01:21 AM
#2
Re: App Installer Package
You can use the Application Package Wizard (VB5) or the Package and deployment wizard (VB6). When creating the install package, they will detect which files the program needs (it reads the refferences). If there are files where no refference is made to (like a database), you have the opertunity to add them manually. Both programs come with the named versions of VB.
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
-
August 13th, 2001, 02:35 AM
#3
Re: App Installer Package
Hi!
Don't trust Packagers of both versions. Don't trust any Installation generators (I've checked a lot of them). Always there is chance that you omitted something. One of examples: VB project (not executable !!) doesn't have reference to connection/report designers runtime DLLs.
So you may find useful:
1. Run dependency walker (one of Visual Studio tools) on youe exe and ensure that you have in package all DLLs of at least the first level of dependency.
2. Check what Data objects your program uses and include in the package the whole mdac_typ. This related to my last advice
3. Check if your program will be installed on the OS other than your's. If so, check what files in your package are different on different OS. For example, mdac_typ contains file oledb32a.dll, that is needed only on Win98. So if your design OS is NT - you'll never include this file.
Hope, it helps.
Regards,
Gennady
-
August 13th, 2001, 05:31 AM
#4
Re: App Installer Package
Hello Together,
Best thanks to all for the tips.
Sincerely.
Askia.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|