how to include check box in datagrid for .net 1.x version
Windows Forms
2
Posts
2
Posters
0
Views
1
Watching
-
hi all, my problem is how to include a checkbox as the first column in datagrid(not in Datagridview)in windows application for .net 2003 .pls suggest me its very urgent
ksf
u include a checkbox in datagrid by defining its datatype boolean exp. dc = New DataColumn("Is Male") dc.DataType = System.Type.GetType("System.Boolean") dc.DefaultValue = false dc.ReadOnly = True dt.Columns.Add(dc) here dt is datatable.
Ghazanfar Ali Programmar (MSTS,MCPD)