| | |
Checkbox in DataGridView
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
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 bing button buttons center check code combobox component connectionstring crystalreport data database databasesearch datagrid datagridview date design dissertation dissertations dropdownlist excel fade file-dialog filter folder ftp generatetags google gridview hardcopy images input insert intel internet mobile monitor ms net networking objects output panel passingparameters peertopeervideostreaming picturebox picturebox1 port position print printing problem problemwithinstallation project save searchbox searchvb.net select serial shutdown soap survey table tcp temperature text textbox timer timespan toolbox trim update updown user vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web winforms wpf year





