Hi All,

I'm trying to show a second form with several controls on it, but after showing the second form stays blank!

This is how I create a second form:

Project -> Add Windows Form -> Windows Form -> Add = Ok my second form2 is created! I've putted some controls on that Form2!

In form1, I've created a button1 to show my second form like this:

VB Code:
  1. Dim Form2 As New Form
  2. Form2.Show()

What did I do wrong that after the second form is showing that it still stays Blank! (means without any control and Formname)

Thanks in advance,

sparrow1