Hi,
I've made a grid using the GridDataControl class. In this grid, I have a checkbox column and a couple of text columns. Whenever the user highlights a row and presses Ctrl+V (paste), the application throws the following error:
Format Exception: String was not recognized as a valid Boolean. Method: Parse
It appears as though when even I press Ctrl+V it is attempting to pas the copied string into the first column, which happens to be a checkbox column that expects a Boolean value.
Is there a way to disable pasting to a column? This is occurring when the entire row is selected, but none of the text fields in particular are being edited.
Thanks