I\'ve encountered a bug (I assume) in .NET 3.5. When adding rows to a DataGridView using Rows.Add(), while the DGV is disabled, the vertical scrollbar doesn\'t update proper
My solution was to disable scrollbars from it's properties.
Then enable them from code line after initializing the window.
DataGridViewObj.ScrollBars = ScrollBars.Both