Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

  1. Is it possible to use the .Net Control in a MFC application?

  2. I have a dialog in C# I need to use the same dialog in MFC.whether can I import the entire dialog into Mfc ,or can i save my C# application as .OCX file and use it in MFC?

share|improve this question

2 Answers

up vote 3 down vote accepted

The main difference: .ocx is unmanaged because MFC is unmanaged, .NET controls are managed (if you don't try to use MFC in .NET, or other unmanaged stuff).

I think you can't save your .NET app as .ocx file, at least there is no standard way to do this, but you can still use .NET controls in C++ because they can be registered for COM interop.

share|improve this answer

There is another answered question here that might be helpful: Building an OCX with VS.NET?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.