I have a DataGridView in a WinForms 2.0 App that has a lot of columns, enough that even when maximized the user has to scroll to see all columns. The far right column is a delete button. We want to always display the delete button without the user having to horizontally scroll.
When I try setting column.Frozen = true;
it removes my horizontal scrollbar and makes all of the previous columns frozen. According to Microsoft this is by design.
Does anyone have a solution for this?