DataGrid Row Selection

Hema Rawat

Member
Joined
Dec 12, 2005
Messages
24
Location
India
Programming Experience
1-3
Hey All,
I stuck in a problem
That how to trap the selected row data & then send that data to the next form
In Windows form Datagrid there is no concept for the Template column to add checkbox column etc.
Then How I Can Trap the selected Row of datagrid

Plz Help
Thanks for this kind Help
 
Hema Rawat said:
In Windows form Datagrid there is no concept for the Template column to add checkbox column etc.
Of course there is. You need to find information on DataGridColumnStyles
Hema Rawat said:
Then How I Can Trap the selected Row of datagrid
The DataGrid has a CurrentRowIndex property that you can use to get the current row from the DataSource. For a wealth of information regarding the WinForms DataGrid check out the following page: http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx
 
Back
Top