Checkbox in DataGridView

Please support our VB.NET advertiser: Intel Parallel Studio Home
Reply

Join Date: Dec 2007
Posts: 252
Reputation: ProfessorPC is an unknown quantity at this point 
Solved Threads: 27
ProfessorPC ProfessorPC is offline Offline
Posting Whiz in Training

Checkbox in DataGridView

 
0
  #1
Dec 29th, 2007
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.

  1. Dim myconnection1 As New SqlConnection(myconn)
  2. Dim dtcCheck As New DataColumn("Select")
  3. dtcCheck.DataType = System.Type.GetType("System.Boolean")
  4. dtcCheck.DefaultValue = False
  5. Dim sa As New SqlDataAdapter("SELECT * FROM therapy", myconnection1)
  6. sa.Fill(ds, "Therapy")
  7. DataGridView1.DataSource = ds.Tables("Therapy")
  8. ds.Tables.Add.Columns.Add(dtcCheck)

Thank You
Last edited by ProfessorPC; Dec 29th, 2007 at 12:04 am.
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 169
Reputation: ptaylor965 is an unknown quantity at this point 
Solved Threads: 19
Sponsor
ptaylor965's Avatar
ptaylor965 ptaylor965 is offline Offline
Junior Poster

Re: Checkbox in DataGridView

 
0
  #2
Dec 29th, 2007
I used this code to create a table with each month as a checkbox
  1. Dim chkBox As System.Type = System.Type.GetType("System.Boolean")
  2. With dtYear.Columns
  3. .Add("Jan", chkBox)
  4. .Add("Feb", chkBox)
  5. .Add("Mar", chkBox)
  6. .Add("Apr", chkBox)
  7. .Add("May", chkBox)
  8. .Add("Jun", chkBox)
  9. .Add("Jul", chkBox)
  10. .Add("Aug", chkBox)
  11. .Add("Sep", chkBox)
  12. .Add("Oct", chkBox)
  13. .Add("Nov", chkBox)
  14. .Add("Dec", chkBox)
  15. End With

Try using this syntax
Peter Taylor
Visual Basic.NET Application Developer

TaylorsNet
http://www.taylorsnet.co.uk
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the VB.NET Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC