Form Control

  • Thread starter Thread starter Big E
  • Start date Start date
B

Big E

I'm using VB.Net Windows Forms.
I have 2 forms. They are both completely built.
I have Form A and Form B.
I want to load FormB from a button in FormA
In VB6 it was something like FormB.Show

The only info I can find is creating new forms on the fly.
I want to just show FormB within FormA.

Thanks.

E
 
* "Big E said:
I'm using VB.Net Windows Forms.
I have 2 forms. They are both completely built.
I have Form A and Form B.
I want to load FormB from a button in FormA
In VB6 it was something like FormB.Show

The only info I can find is creating new forms on the fly.
I want to just show FormB within FormA.

\\\
Dim f As New FooForm()
f.ShowDialog()
///
 
Back
Top