R – Loading a Vb.net control inside a VB 6 form

com-interopvb.netvb6

I have a user control in vb.net application.

and i have a form in vb 6.

so in my vb.net applciation to this user control i need to mention the vb 6 form as its parent.

Means when i run a vb6 application i should see this user control as a part of that form.

Ahy help appreciated.

Best Answer

Take a look at the COM interop Toolkit. It allows you to easily create com-visible .NET usercontrols, which can be used in VB6 for instance.

Related Topic