SubForms?

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Hey folks,

I'm creating a Windows application in C#. I have a form with 2 tabs. I
want the second tab to display a different form as its' contents.

I thought I remembered doing this back in VB6 days by adding a Sub Form. Is
this still possible, and if so, how do I do it?

Thanks!
 
Have you tried just putting the controls/user controls/custom controls on
the tab?? I guess I'm a bit confused as to why you want to use a "Subform".
To my knowledge there are not subforms availble in .net, or in VB6.
 
That's what I ended up doing. Thx

Lateralus said:
Have you tried just putting the controls/user controls/custom controls on
the tab?? I guess I'm a bit confused as to why you want to use a "Subform".
To my knowledge there are not subforms availble in .net, or in VB6.

--
Lateralus [MCAD]


John Smith said:
Hey folks,

I'm creating a Windows application in C#. I have a form with 2 tabs. I
want the second tab to display a different form as its' contents.

I thought I remembered doing this back in VB6 days by adding a Sub Form.
Is
this still possible, and if so, how do I do it?

Thanks!
 
Just in case the idea may have been to allow plugging in new tab pages, you
could always create user control that you plug onto the new tab page also.
That way, you can design the tab page outside of the actual containing form.
 
Back
Top