splitting cells of datagrid

  • Thread starter Thread starter jack
  • Start date Start date
J

jack

Hi
Dose any one knows how to split the cells of a data grid . Iv
search'd on net but im only able to find third party ocx . But what i
want is ,splitting the cells of grid which is available in .net . Is
there any way to do this ????.
Awating for the answer.
 
Jack,

Everything you do with a windowsforms datagrid you have to do with the
datasource (and mapping the columns of that, which is default set if you
don't use styles in which case you can set those off).

Therefore you can add columns to the datatable using the expression. Be
aware that the documentation in the link I give is fair, and in my opinion
not always as accurate as it could be (not everything is always working as
described)

http://msdn.microsoft.com/library/d...fSystemDataDataColumnClassExpressionTopic.asp

You can use this inside the overloaded version of the Datatable.Columns.Add

I hope this helps,

Cor
 
Back
Top