| | |
Checkbox in DataGridView
Please support our VB.NET advertiser: $4.95 a Month - ASP.NET Web Hosting – Click Here!
![]() |
•
•
Join Date: Dec 2007
Posts: 252
Reputation:
Solved Threads: 27
Hello,
I am having an issue trying to add a checkbox field to my DataGrid. I have the following Code but it does not display my checkbox. Any help is greatly appreciated.
Thank You
I am having an issue trying to add a checkbox field to my DataGrid. I have the following Code but it does not display my checkbox. Any help is greatly appreciated.
VB.NET Syntax (Toggle Plain Text)
Dim myconnection1 As New SqlConnection(myconn) Dim dtcCheck As New DataColumn("Select") dtcCheck.DataType = System.Type.GetType("System.Boolean") dtcCheck.DefaultValue = False Dim sa As New SqlDataAdapter("SELECT * FROM therapy", myconnection1) sa.Fill(ds, "Therapy") DataGridView1.DataSource = ds.Tables("Therapy") ds.Tables.Add.Columns.Add(dtcCheck)
Thank You
Last edited by ProfessorPC; Dec 29th, 2007 at 12:04 am.
I used this code to create a table with each month as a checkbox
Try using this syntax
VB.NET Syntax (Toggle Plain Text)
Dim chkBox As System.Type = System.Type.GetType("System.Boolean") With dtYear.Columns .Add("Jan", chkBox) .Add("Feb", chkBox) .Add("Mar", chkBox) .Add("Apr", chkBox) .Add("May", chkBox) .Add("Jun", chkBox) .Add("Jul", chkBox) .Add("Aug", chkBox) .Add("Sep", chkBox) .Add("Oct", chkBox) .Add("Nov", chkBox) .Add("Dec", chkBox) End With
Try using this syntax
![]() |
Similar Threads
- Checkbox Value in DataGridView (VB.NET)
- checkbox in datagridview c# (C#)
Other Threads in the VB.NET Forum
- Previous Thread: what cause this problem?
- Next Thread: clickonce
| Thread Tools | Search this Thread |
.net .net2008 30minutes 2005 2008 access account arithmetic array basic beginner browser button buttons center check code component connectionstring crystalreport cuesent data database databasesearch datagrid datagridview date datetimepicker design designer dissertation dissertations dissertationtopic dropdownlist excel fade file-dialog filter folder forms ftp generatetags hardcopy html images input insert intel monitor net networking open output panel passingparameters peertopeervideostreaming picturebox picturebox1 port printing problem problemwithinstallation project reports" searchvb.net select serial settings shutdown sqlserver survey tcp temperature text textbox timespan toolbox transparency trim updown user usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio.net visualstudio2008 web winforms wpf wrapingcode year





