I have an application using a DataGridView
, is it possible to hide and show rows conditionally?
I want to keep the content of the DataGridView, but to hide rows. I can see that there is a member called Visible
, I tried setting this to false and got an exception:
System.InvalidOperationException: `Row associated with the currency manager's position cannot be made invisible.'
This makes no sense to me, what is the currency manager?
1