Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Why not the vertival scroll bar is shown up until i resize the window form ?

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Why not the vertival scroll bar is shown up until i resize the window form ?
Link Posted: 26-Mar-2011 00:27
The attribute VScrollBarAppearance is set "Auto", but the vertical scroll bar is not shown up automatically until i resize the window form. How can i make the scroll bar to show up automatically ?
Link Posted: 31-Mar-2011 07:33
Probably view port or control in the "updating" state.
Please use following code construction when you add/remove nodes:
flyGrid.BeginUpdate();
try
{
  //add/remove/sort, etc with nodes/rows
}
finally
{
  flyGrid.EndUpdate();
}
Link Posted: 05-Apr-2011 19:02
Thank you, my code works!