I am getting this message:
value of type "System.data.datacolumn" cannot be converted to "System.windows.forms.datagridviewcolumn"
when I am trying to add a column to the dgv
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")
dgvther.DataSource = ds.Tables("Therapy")
dgvther.Columns.Add(dtcCheck) '<<Error is the dtcCheck
Any help on this will be greatly appreciated.