Why is my bound DataGridView throwing an “Operation not valid because it results in a reentrant call to the SetCurrentCellAddressCore function” error?

前端 未结 7 2217
旧时难觅i
旧时难觅i 2020-12-01 15:37

When binding a DataGridView control to a binding source, I\'m getting the following error in my application:

Operation is not valid becau

7条回答
  •  Happy的楠姐
    2020-12-01 16:30

    Set False to MultiSelect Property of your datagridview.

    myDataGridView.MultiSelect=false;
    

提交回复
热议问题