Inviato da AndreaZ on 17/03/2008 14.19.09
Ciao,
osserva bene il costruttore della DataGridViewCheckBoxCell
Andrea
In effetti ho risolto in questo modo
Dim celCHK As New DataGridViewCheckBoxCell()
celCHK.TrueValue = "True"
celCHK.FalseValue = "False"
celCHK.IndeterminateValue = "UnKnown"
celCHK.ThreeState = True
celCHK.Value = "UnKnown"
celCHK.ReadOnly = False
celCHK.Style.Alignment = DataGridViewContentAlignment.MiddleCenter
DataGridView1.Rows(j).Cells(1) = celCHK