When this code runs, all the errors in the forms are handled by the Try Catch of Sub Main. How can I avoid this?
VB Code:
  1. Module Start
  2.    Sub Main()
  3.         Try
  4.             ' some code here
  5.               Application.Run(New Form1())
  6.         Catch ex as System.Exception
  7.               Messagebox.Show(ex.Message)
  8.         End Try
  9.    End Sub
  10. End Module