Hi all friends
I want to know, what are the major factors which effect our application performance, like hardware, software, or programming language we choose, or the coding done by a programmer, or the component we use to program? I know i may be a silly question but I wan to know what the real fact is?
Loading
Bartolomeu DiasPosted Nov 10, 2012, 8:07 AM
Avoid adding data to a binding list with more than 10 000 items when the grid is sorted. Stop sorting to improve performance. However, if you need to add large amounts of data in real-time to the beginning of the grid, it's better to use the following and visit dapfor. com
grid.Sort.Enabled = false;
grid.DataSource = _datasource_;
//Add a single object to the beginning of the grid
grid.Nodes.Insert(0, _new_object_);
//Add a single object to the beginning of the binding list
IBindingList bl = ...;
bl.Insert(0, _new_object_);