B
Bob Day
Using VS 2003, VB.Net, MSDE...
The example below from help shows that the Sub Main contains an explicit
Application.Run. Is this required? Are there pros and cons of doing it
this way? I have not been using application.run on my Main_Thread (i.e. sub
main) and it seems to be Ok.
Under what condistions should you explicityly put an application.run in a
sub main (ie Main_Thread)?
Please advise.
Shared Sub Main()
' Starts the application.
Application.Run(New Form1())
End Sub
Thanks!
Bob Day
The example below from help shows that the Sub Main contains an explicit
Application.Run. Is this required? Are there pros and cons of doing it
this way? I have not been using application.run on my Main_Thread (i.e. sub
main) and it seems to be Ok.
Under what condistions should you explicityly put an application.run in a
sub main (ie Main_Thread)?
Please advise.
Shared Sub Main()
' Starts the application.
Application.Run(New Form1())
End Sub
Thanks!
Bob Day