completly unchecked checkbox issue

  • Thread starter Thread starter magmo
  • Start date Start date
M

magmo

Hi

I have a checkbox column in my datagrid. When I uncheck the checkbox
it turn grey, and then I have to uncheck it once more to get it
completly unchecked. Why is that? I would like to skip that part.

<code>

Dim colCheckMe As New DataGridBoolColumn
With colCheckMe
.MappingName = "CheckMe"
.HeaderText = "Make PDF"
.Width = 80
.ReadOnly = False
End With

</code>


Regards

Magnus
 
Back
Top