Difference between .ocx and .Net Control File

What is the difference between a .OCX file created in MFC or VB and a .Net element created in C #?

  • Can I use .Net Management in an MFC application?

  • I have a dialog in C # I need to use the same dialog in MFC. Can I import the whole dialog in Mfc, or can I save my C # application as .OCX and use it in MFC?

+3
source share
1 answer

The main difference: .ocx is unmanaged, since MFC is unmanaged, .NET controls are controlled (unless you are trying to use MFC in .NET or other unmanaged things).

, .NET- .ocx , , , .NET ++, COM-.

+3

All Articles