Very basic...

I'm brand new to Visual Basic.NET and trying to figure it out (making the first "Hello World")

How does I operate forms like in VB6:

VB Code:
  1. Private Sub Command1_Click()
  2. Form2.Show
  3. End Sub

VB Code:
  1. Private Sub Command2_Click()
  2. Form2.Hide
  3. End Sub
Claus