difficult to handle datagridview with keyboard
-
hi all, as per my projects needs i am using checklistbox. now the requirement is to multiselect the items of checklistbox with shift or control key pressed, which is not possible with this control. now i try to use the datagridview control as checklistbox. - i hide the column header and row header - the first column is datagridviewcheckboxcolumn - the second column is datagridviewtextboxcolumn for MOUSE handling - i write my code on datagridview_cellclick event (that works perfectly as per need) for KEYBOARED handling - i write the same code on datagridview_cellvaluechanged event ( their the problem is ) when i check the checkbox, i need to change the other controls value accordingly. but the event fires when selection changed. - i also try datagridview_selectionchange event but in that case i have to change the selection to get the values get change does some one have any kind of idea to solve that problem. thanks in advance help everyone