Tagged Questions

0
votes
0answers
9 views

empty Datagridview in virtualmode with millions of rows slows

I am trying to create datagridview connected to sqlserver. But it seems that even in simple datagridview cannot handle quickly millions of rows. And so scrolled to upper rows datagridview updates …
0
votes
0answers
99 views

C# ListView in VirtualMode flickers when the selected item is not visible

I know it sounds complicated to reproduce but please follow me: You have a ListView in VirtualMode = true. Select an item, scroll down so that the item selected gets outside the visual area and then …
0
votes
0answers
55 views

DataGridView VirtualMode

Hi! Wierd thing happened to me ;) I set DataGridView.VirtualMode property to true, handle CellValueNeeded event, but as i noticed it fires for every row from database. For Example i have table with …
0
votes
3answers
324 views

How to sort ListView items when ListView is in VirtualMode?

I realize i have to sort the collection where the ListView gathers the items from: ListView listCollection = new ListView(); But this doesn't seem to work unless the ListView is added as a …
0
votes
3answers
181 views

C# Exception when retrieving rows from a datagrid in virtual mode

Hi all, I keep getting an exception (see below) when I retrieve a list of rows from a Virtual Mode datagrid, this only happens when I have more rows than I can display on screen and it doesn't happen …
0
votes
3answers
971 views

how to change the row position of virtual mode datagridview?

how to change the row position of virtual mode datagridview?
1
vote
1answer
1k views

How do I populate a ListView in virtual mode asynchronously?

I'd like to display records from our database in a listview - but retrieves can take a long time. I can use RetrieveVirtualItem to tell me when a new ListViewItem is needed, add a dummy item, and …
2
votes
1answer
568 views

How do I update a WinForms ListView when using VirtualMode=True?

I have an app with a large ListView which is terribly slow so I'm implementing VirtualMode. MSDN does not seem to cover how I would add and delete new items in the middle of the listview. For …