Host C# winforms in VB6 applications - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T15:51:28Zhttp://stackoverflow.com/feeds/question/210391http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/210391/host-c-winforms-in-vb6-applications4Host C# winforms in VB6 applicationsoohttp://stackoverflow.com/users/46532008-10-16T21:33:17Z2008-10-17T03:28:47Z
<p>I have a VB 6 application and we are starting to port it over to C#. We have finished one of the screens and wanted to see if there was an incremental way of hosting the winform within VB to start to have the existing users get used to new screens. This is a migration strategy..</p>
<p>Any thoughts.</p>
http://stackoverflow.com/questions/210391/host-c-winforms-in-vb6-applications/210407#2104074Answer by KiwiBastard for Host C# winforms in VB6 applicationsKiwiBastardhttp://stackoverflow.com/users/10752008-10-16T21:38:31Z2008-10-16T21:38:31Z<p>Have you <a href="http://hubpages.com/hub/Interop_Forms_Toolkit_10" rel="nofollow">looked at this?</a> Direct Link to <a href="http://msdn.microsoft.com/en-us/vbasic/bb419144.aspx" rel="nofollow">Product here</a></p>
http://stackoverflow.com/questions/210391/host-c-winforms-in-vb6-applications/210795#2107954Answer by Rob Windsor for Host C# winforms in VB6 applicationsRob Windsorhttp://stackoverflow.com/users/287852008-10-17T01:08:50Z2008-10-17T03:28:47Z<p>The Interop Forms Toolkit allows you to create .NET Forms and User Controls that can be used in VB 6.0 applications. This allows you to migrate VB 6.0 applications to .NET over time (a form or part of a form at a time). However, the toolkit relies on features from the Microsoft.VisualBasic assembly and the VB.NET compiler so it doesn't work with C#.</p>
<p>There are a couple articles/samples on <a href="http://www.codeproject.com/" rel="nofollow">CodeProject.com</a> that discuss the toolkit and how to use it with C#.</p>
<p><a href="http://www.codeproject.com/KB/vb-interop/VB6InteropToolkit2.aspx" rel="nofollow">Interop Forms Toolkit 2.0 Tutorial</a></p>
<p><a href="http://www.codeproject.com/KB/dotnet/VB6_-_C__Interop_Form.aspx" rel="nofollow">VB6 - C# Interop Form Toolkit</a></p>
<p>Beth Massi has several articles and webcasts on the use of the Toolkit you can use for reference. Check out <a href="http://blogs.msdn.com/bethmassi" rel="nofollow">her blog</a> for links to resources.</p>