TableLayoutPanel for.NET 2003

When I was using .NET 2005, it was fine for me to use a TableLayoutPanel control.
But there's no such control in .NET 2003. I have to make my project in C++ .NET 2003. And I need TableLayoutPanel  for .NET 2003. How can I use TableLayoutPanel  in Visual C++ .NET 2003




Answer this question

TableLayoutPanel for.NET 2003

  • Nickolas Hook

    Am I right

  • IMileti

    Hi
    Just a view pointers

    Samples on Codeproject
    http://www.codeproject.com/cs/miscctrl/TableControl.asp

    Commertial Libraries
    Intragistics NetAdvantage for WinForms -the WinGridBagLayoutManager control
    See http://www.infragistics.com

    Michael

  • Zafar Ullah

    So, where can I get classes or special libraries with TableLayoutPanel for .NET 2003 I think such classes or libraries must exist in the world.

  • Chouproute

    You either have to build one from scratch or get a third-party library.  If you build it from scratch you can use the existing TableLayoutPanel as a sample.  Using Reflector or another tool you can look at how MS did it.  They probably relied on a lower-level class to do most of the work so it could be a lot of work.  Thinking through it though a table layout is not that hard to implement provided the layout and content is static.  If it is dynamic then the code could get real ugly.  I guess that is why MS added it as a new class in .NET 2.0.

    Michael Taylor - 10/7/05

  • TableLayoutPanel for.NET 2003