unknownloser
Newcomer
I have a program that starts running Sub Main in a module. The code in the module tells the program to go to my main menu, frmInstallerIntro. But, when the code executes, frmInstallerIntro flashes on the screen and then the program terminates. Below is the code in my module:
Module Module1
Public installerIntro As New frminstallerIntro
Sub Main ()
installerIntro.Show()
End Sub
End Module
If anyone can give me some help with this problem, I'd really appreciate it. Thanks.
Module Module1
Public installerIntro As New frminstallerIntro
Sub Main ()
installerIntro.Show()
End Sub
End Module
If anyone can give me some help with this problem, I'd really appreciate it. Thanks.