Datagrid scrollbar

  • Thread starter Thread starter Hugh Janus
  • Start date Start date
Hi,

Whenever I resize the rows in the datagrid I had that happen. To
overcome it try resizing the grid to get the scroll bars to show. I usually
reduce the grid size by one pixel then reset it to the orginal size.

Ken
 
Ken said:
Hi,

Whenever I resize the rows in the datagrid I had that happen. To
overcome it try resizing the grid to get the scroll bars to show. I usually
reduce the grid size by one pixel then reset it to the orginal size.

Ken

Thanks Ken, but I have possibly hundreds (or maybe even thousands of
rows) so resizing them is not an option. Any idea on how to implement
that example to force the scrollbar for VB.NET 2003?

Hugh
 
Hugh,

The syncfusion code will create an control that inherits from
datagrid that allways shows the vertical scroll bar. You would need to
replace the datagrid with the new control.

Another option is resize the datagrid after you set its datasource to
force it to recalculate if the scroll bars are needed.

Ken
-----------------------
 
Back
Top