Can any body please help me with this.
I don't know what is wrong here. when I run my program, only one form appear on screen. Both forms surpose to appear one after another. Or maybe something is wrong with my the code.
Module Module1
Public Sub Main()
Dim About As New Help_AboutForm
About.ShowDialog()
Dim main As New Form1
main.ShowDialog()
End Sub
End Module