.net Windows controls in a VB6 program

  • Thread starter Thread starter Andrew Collett
  • Start date Start date
You can't use the VB.net controls directly, but it is possible to open a
..NET Windows Form from a VB6 application.

in a VB 6 application..

dim x as new myDotnetAssembly.MyForm
x.Show

will display a .NET form from VB6.
 
Back
Top