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

前端 未结 7 2195
旧时难觅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条回答
  • 2020-12-01 16:30

    Set False to MultiSelect Property of your datagridview.

    myDataGridView.MultiSelect=false;
    
    0 讨论(0)
提交回复
热议问题