System.InvalidOperationException: This operation cannot be performed while an auto-filled column is being resized
c#
Solution
Maybe you are iterating on the values while they are being loaded? Try to get your application to wait or lock on those operations.
Problem
I have DataGridView in my winform application and set ``` this.dgvDte.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; ``` When run my project an open that form some times but not always get me this err "System.InvalidOperationException: This operation cannot be performed while an auto-filled column is being resized" any body can help me what its happen ?