This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Are the System DLLs and OCXs necessary to be included in the deployment package?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 30, 2016
10:53 AM
Are the System DLLs and OCXs necessary to be included in the deployment package?
A 32bit Windows application developed in VB6, requires some system DLLS and ActiveX components such as MSCOMCTL.OCX, MSVCRTD.DLL, SYSINFO.OCX etc As we all know they in x86 systems are in the c:\Windows\System32, in x64 systems, and in the C:\Windows\SysWOW64 directories. Do I have to specifically include these files in my project or they are used as required from these directories regardless?
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 01, 2016
11:05 AM
From the link below it looks like msvcrt.dll is shipped with Windows and mscomctl.ocx and sysinfo.ocx need to be distributed with your application. The link was last updated in August 2015, so you may want to dig around to see if there have been any changes since then.
Support Statement for Visual Basic 6.0 on Windows Vista, Windows Server 2008, Windows 7, Windows 8 and Windows 8.1, Windows Server 2012, and Windows 10
https://msdn.microsoft.com/en-us/vstudio/ms788708.aspx
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 01, 2016
02:30 PM
jkell wrote:
From the link below it looks like msvcrt.dll is shipped with Windows and mscomctl.ocx and sysinfo.ocx need to be distributed with your application. The link was last updated in August 2015, so you may want to dig around to see if there have been any changes since then.
Support Statement for Visual Basic 6.0 on Windows Vista, Windows Server 2008, Windows 7, Windows 8 and Windows 8.1, Windows Server 2012, and Windows 10
https://msdn.microsoft.com/en-us/vstudio/ms788708.aspx
Thank you very much. This is very helpful. Is there a way to know all the files (DLLs, OCXs) required by an application? I use Depends but it does not show many files required.