VS.NET 2003 style "tab view"

  • Thread starter Thread starter Trevor
  • Start date Start date
T

Trevor

How can I create a "tab view" similar to the one in Visual Studio .NET
2003? I am talking about the area in the middle of the screen where you
edit the source code. I guess it could be descrived as a super MDI window
with each child window showing up in some big tab control rather than in
their own window inside the MDI container. I would like to do something
like this in my C# Windows Forms application, but have very little
experience with C#/.NET. If anyone can offer any advice it would be
appreciated.
 
Trevor,

Are you not wanting to use the existing tab control supplied with WinForms?

Adam
 
Adam W Root said:
Trevor,

Are you not wanting to use the existing tab control supplied with WinForms?

Adam

I have no problem with the existing tabs. I would like to find out how to
put a form or control in each tab dynamically.
 
Back
Top