I don't know what the hell is going on here...

First time I am using a module as the startup...

VB Code:
  1. Module Module1
  2.     Public Sub Main()
  3.         Dim myform As New Form1()
  4.         myform.Show()
  5.  
  6.     End Sub
  7. End Module

And for some reason... the form loads... and then prompty disappears... and the program exits...

why?