C# : Problem in creating diffrent types of columns in a gridview

Posted by Royson on Stack Overflow See other posts from Stack Overflow or by Royson
Published on 2010-03-19T09:06:30Z Indexed on 2010/03/19 9:11 UTC
Read the original article Hit count: 154

Filed under:
|
|
|
|

My windows form application has a grid view control with filename as a default column. User should create a column of following types

Text, Number, Currency,
Combo Box, Check Box, Radio Button ,
Date time type (should display DateTimePicker control) and Hyper Link type.

After that i want to pass all rows to next screen for further processing. We can create a column of these types in a grid view but how can i store it in a data table so that i can pass it to next screen.

Or should i create a column in a data table and then assign data table to grid view by
gridview.DataSource = dt; but can we create a these types of columns in a data table.

I am so confused!! Please help me to solve this problem.
Thanks

© Stack Overflow or respective owner

Related posts about c#

Related posts about winforms