How do I show a form from sub main module?
I have this in module main
Public frmMain as New FormMain
Public Sub Main()
'This does not. It shows the form then ends the program
frmMain.Show()
'This works
frmMain.ShowDialog()
End Sub
How can I show a form non model and still run my program?
I have this in module main
Public frmMain as New FormMain
Public Sub Main()
'This does not. It shows the form then ends the program
frmMain.Show()
'This works
frmMain.ShowDialog()
End Sub
How can I show a form non model and still run my program?