VB6-MDI child in .NET application

  • Thread starter Thread starter Karl-Heinz Wenzel
  • Start date Start date
K

Karl-Heinz Wenzel

Is it possible to integrate a VB6 MDI child form into a .NET
application? How is it done?

Thank you
Karl-Heinz
 
I agree, but I still believe the two runtimes can co-exist. If the VB6 form
is a part of a ActiveX DLL, one can probably can make it an MDI child with
the appropriate WinAPI calls? Or use the Form's FromHWND constructor to wrap
the VB6 window with a managed Form class instance?
 
Sure, but what would be the point?

If they have followed proper design, there ain't
much in the vb6 form but some events
and form elements. Those could quickly
be duplicated in .NET and you wind
up proper .net app that you don't
have to deploy to different runtimes.

--
Robbe Morris - 2004-2006 Microsoft MVP C#
Earn money answering .NET questions
http://www.eggheadcafe.com/forums/merit.asp
 
Back
Top