[RESOLVED] [VB6] - Minimum required runtime files?
I use a 3rd party program to make the installer (Easy Install Creator). But I first use VB's Package & Deployment wizard to easily put all of the necessary files into one folder which makes things quicker.
But then there are also files that are not needed since they are just for the P&D setup wizard. I'm trying to figure out just the necessary files.
In this case, an empty VB project with no controls/extra references added.
Here is the list of files that I'm unsure of:
ASYCFILT.DLL
Microsoft OLE 2.40 for Windows NT(TM) and Windows 95(TM) Operating Systems
COMCAT.DLL
Microsoft Component Category Manager Library
OLEAUT32.DLL
Microsoft OLE 2.40 for Windows NT(TM) and Windows 95(TM) Operating Systems
OLEPRO32.DLL
Do I need any of those? I was thinking I need the OLE ones but according to the Project -> References menu, the OLE Automation reference uses VB6.OLB.
Re: [VB6] - Minimum required runtime files?
Re: [VB6] - Minimum required runtime files?
Thanks Rhino, so I guess I need all of them.
Quote:
Originally Posted by Microsoft
These files are the base dependencies for any component or application that is created in Visual Basic 6.0:
Asycfilt.dll 2.40.4275.1 144 KB (147,728 bytes)
Comcat.dll 4.71.1460.1 21.7 KB (22,288 bytes)
Msvbvm60.dll 6.0.97.82 1.32 MB (1,386,496 bytes)
Oleaut32.dll 2.40.4275.1 584 KB (598,288 bytes)
Olepro32.dll 5.0.4275.1 160 KB (164,112 bytes)
Stdole2.tlb 2.40.4275.1 17.5 KB (17,920 bytes)
Re: [RESOLVED] [VB6] - Minimum required runtime files?
You MUST also include
6.0.81.69 VB5DB.DLL
If you use any Bound Data Controls.
Re: [RESOLVED] [VB6] - Minimum required runtime files?
Quote:
Originally Posted by randem
You MUST also include
6.0.81.69 VB5DB.DLL
If you use any Bound Data Controls.
Thanks randem. But I know better than to use Data Bound controls. ;)