geo1st487
12-31-2003, 10:29 PM
Is possible to load an ActiveX control in VB.NET which written in VB6 and save it as .NET component? (after making changes of course).
.NET components which extension has? *.ocx?
Thanks :)
reboot
12-31-2003, 10:41 PM
You don't make .ocx's in .Net
geo1st487
12-31-2003, 11:03 PM
You don't make .ocx's in .Net
in .NET can't make .NET components or can't open the project of ActiveX control (*.ocx) which written in VB6? I want to modify an ActiveX control which written in VB6 to .NET component (for use it as .NET component).
AndreRyan
01-01-2004, 01:55 AM
You can use Add Reference>COM Tab>Control Name in the list to add an ActiveX Control. You cannot import ActiveX Control projects successfully. .Net controls CANNOT be used in Visual Basic 6. .Net controls are compiled as DLLs.
Also as a warning, do NOT use Visual Basic 6 wrapper controls in .Net(Like the Winsock control, common dialog control, etc.). They're not properly compatible and .Net has built in controls to do these things anyway.