Я бы точно следовал совету по поиску причины в программе просмотра событий. Но я думаю, что вам также нужно получить правильный метод развертывания.
Сначала я бы установил пакет обновления 6 для VB6 , чтобы вы были на последней версии.
Тогда я бы сделал правильный установщик MSI.
Для этого вам понадобится:
Visual Studio Installer 1.1 от MS .
Объединение модулей для VB6 SP6 .
Модули слияния должны быть извлечены поверх существующих модулей слияния, которые поставляются с установщиком Visual Studio и находятся в C:\Program Files\Microsoft Visual Studio\COMMON\Tools\VSInst\BuildRes
Затем я бы создал установщик MSI и использовал его для развертывания вашего приложения.
Он зарегистрирует dll для вас и убедится, что зависимости установлены.
Чтобы создать установщик:
1) Open visual studio installer
2) Pick the VB Installer package type in the wizard
3) Change the name to the name of your project
4) Change the location to where you want the installer package to be created (I typically create a folder under the project called Install)
5) Choose create Installer, not merge module (unless you want to package up dependencies for a subproject)
6) Pick the existing VB project to deploy
7) Under Files on right add any other files that aren't straight dependencies (documentation or other related files)
8) Under Build Menu -> Build Configuration change it to release.
9) Click File System, then Application Folder, change the default install folder to be <company name>\<app Name>
10) Right click and Delete unneeded/bad dependencies. For example MDAC.msm doesn't normally need to be deployed by the app.
11) Change ActiveX dlls to be self register in properties.
12) Under File System, User's Start Menu - Add folder hierarchy User's Start Menu -> Programs -> <company name> -> <app name>
13) Drag system created shortcut to app from User's Start Menu to the App Name folder. Rename as appropriate.
14) Add shortcut to user's desktop folder if desired
15) Add any other file shortcuts (say to documentation) in the App Name folder or user's desktop
16) Under User Interface, click all the leaf nodes (like the welcome screen) and change the banner bitmap if you have one.
17) Configure Project Properties as appropriate (I fill in support information and update version number)
Build -> Build
THe msi file will be created in a subfolder of the install folder.
Whenever you make a new exe you just open the existing visual studio installer project and choose build->build. It will create a new msi for you.