[DatagridView] Not tableStyle

GarsDuCalvados

New member
Joined
Jul 25, 2007
Messages
1
Programming Experience
Beginner
Hello,
I'm french.
I have a question :
What is the syntaxe for Visual Studio 2005 for datagridview.tableStyles?
Thanks,
.matthieu
 
The DataGridView control doesn't use TableStyles. It is quite different to the DataGrid in that regard, and much better. In a DataGridView you add a column and just set properties of that column. There are several inbuilt column types to host common controls, including TextBoxes, ComboBoxes, LinkLabels and Buttons. You can also create your own column types to host any controls you like.

As always, if you want to know about something .NET-related then the first thing you should do is go to the MSDN library and read about it.

http://msdn2.microsoft.com/en-us/library/k39d6s23(VS.80).aspx

I'm sure that there's DataGridView information in the French version too.
 
Back
Top