datagrid with checkbox ???/
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Hello It is there There r two methods first one is in ur Datasource table you sholud be craeat the Boolean Column the u give the DataGrid DataSource
Datagrid.Datasource = Table (Table with Boolean column)
Otherwise create the table style Of DataGridDim m_tbs as new DataGridTableStyle with m_tbs dim col as mew DataGridBoolColumn with col .MappingName= ColName // colName is in table which column u want to display .witdh=180 end with .GridColmnStyle.Add(col) end with DataGrid.TableStyles.Add(m_tbs)
I hope This will help to u:-D