I have an app with a Sub Main in a module which instantiates and shows a form like this:
However, when I run my application, the form flashes up, disappears and my application ends.VB Code:
Public Sub Main() Dim frm As frmMain frm = new frmMain frm.Show() End Sub
How can I make the application remain running until my form has unloaded (like VB6 did)?
