A: 

The WindowsForms control you are looking for is called a DataGrid

joshperry
A: 

It's not entirely clear by your question, but if you are trying to access Windows Forms from standard c++ you are out of luck. Windows Forms lives in the Managed world while c++ is unmanaged. To use windows forms you'd have to switch to C++/CLI or C#. Which if you are doing something for a school project may not be an option.

If it is an option to switch languages like that. I'd start looking at C++/CLI documentation to get a feel for how things might work for you.

MrSlippers
A: 

If you want to know Windows UI inner workings, I recommend you to stay away from .NET for now, and learn some basic things in C++ and WinAPI. Sometimes programming .NET (or C++ / COM) requires you to invoke unmanaged components/functions and you'll be glad you understand how the low-level things work.

If your project requires .NET, go on, but don't forget to make yourself some time to learn good-old Win32 / C++ programming.

Hernán
A: 

Please give some more details about the question Dalze-> is there any requirement about using managed controls? or not using them? What's your prof want you to learn from this exercise (and is how to use stack overflow to do your homework one of them)?

There's several ways to skin this cat.

If you are supposed to or want to used managed code: DataGrid mentioned is a good simple database tool link text

An sql database could also hold all the information and allows sorting on the various sub elements.

If you choose not to use managed code you can build a few simple objects to carry the information you need, then add some sort functions for each of the variables of interest.

Mark Essel
A: 

I'm piggybacking on this question - I apologize. But out of curosity, why would you suggest DataGrid vs. ListView ??