Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VB6 Common Controls On Windows 10

Tags:

windows-10

vb6

I've recently installed windows 10 from windows 7. I have now run in to an issue where microsoft Common Controlls mscomctl is not founnd

enter image description here

I have registered the "MSCOMCTL.OCX" file with sysWow64/Regsvr32.exe

enter image description here

But when I reload the project it still cant find the reference.

I've also registered the .ocx with System32. Is this a windows 10 issue or am I missing something?

like image 883
Joshua Duxbury Avatar asked Jan 18 '16 17:01

Joshua Duxbury


People also ask

What are common controls VB?

These are objects that you can drag to the Form using the Control toolbox in the IDE. Each VB.NET Control has some properties, events, and methods that can be used to tweak and customize the form to our liking. Properties describe the object. Methods are used to make the object do something.

What are the Microsoft Windows common controls?

Like other control windows, a common control is a child window that an application uses in conjunction with another window to enable interaction with the user.

Does Windows 10 have vb6 runtime?

Windows 7 SP1, 8.1, 10 & 11The VB6 runtime will ship and will be supported in Windows 10 and Windows 11 for the lifetime of the OS. Visual Basic 6.0 runtime files continue to be 32-bit only, and all components must be hosted in 32-bit application processes.


1 Answers

The most probable reason for this error is that your project is looking for a newer version of MSCOMCTL.OCX than is installed by Visual Basic 6 (with Visual Studio 6 Service Pack 6).

You can verify the version of the typelib required by your project by opening the .vbp project file in a text editor. Look for a line like this one:

Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.2#0; MSCOMCTL.OCX

The 2.2 in the middle refers to the typelib version required. If you re-add the component reference and then save the project, you can go back to the .VBP file and see what typelib version is currently installed on your machine. (This will likely be version 2.0).

To get the latest typelib version (2.2):

  1. Install Visual Studio 6 Service Pack 6, if you haven't already.
  2. Install the January 2016 version of the Microsoft Visual Basic 6.0 Service Pack 6 Security Rollup Update.

This will give you version 6.1.98.46 of MSCOMCTL.OCX.

like image 194
Holistic Developer Avatar answered Oct 03 '22 06:10

Holistic Developer