G
Guest
I just converted my app from VS.NET 2003 to VS.NET 2005 Beta 2, and the first
issue I came to was that “form.show†is loading the form, but not displaying
it.
I created a new project, and added Form1 and Form2. The following code is in
Form1.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim tf As New Form2
tf.Show()
End Sub
When I run my app, Form2 is in the running programs list, but Form1 is still
the top form displayed.
Please tell me I’m overlooking something simple. Thanks for the help.
Brandon
issue I came to was that “form.show†is loading the form, but not displaying
it.
I created a new project, and added Form1 and Form2. The following code is in
Form1.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim tf As New Form2
tf.Show()
End Sub
When I run my app, Form2 is in the running programs list, but Form1 is still
the top form displayed.
Please tell me I’m overlooking something simple. Thanks for the help.
Brandon