I am writing a VB.net application and have included a c# dll. The c# dll has a class called WelcomeScreen. This class has a form (I saw this in the Object Browser). How can I show this form in my VB.net application?
This is the code I have so far:
Public Class Form1
Dim welcome As New WelcomeScreen(1)
welcome.Show()