Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Deploy VB6 Applications?

Tags:

vb6

How to run the exe file to other system?

Using VB 6

I copied the exe file to other system, then run that exe file, it not working it showing error “component comdlg32.ocx or one its dependencies not correctly registered a file is missing or invalid”`

Can any one help me how to avoid this error?

like image 986
Gopal Avatar asked Dec 22 '22 10:12

Gopal


2 Answers

When deploying VB6 applications, you should create a Setup, this will manage the DLL's that the VB6 application depends on. Since it is not enough to just copy the .Exe and .Dll's. You also need to register them.

The creation of the setup is included in the VB6 environment.

like image 158
GvS Avatar answered Dec 24 '22 23:12

GvS


You can read this http://support.microsoft.com/kb/830761 which is very comprehensive.

1: http://support.microsoft.com/kb/830761 for more information.

Or if you just want the redistributable files check this kb http://support.microsoft.com/kb/290887

like image 37
vikash Avatar answered Dec 24 '22 22:12

vikash