Tagged Questions
The virtualmode tag has no wiki summary.
5
votes
1answer
211 views
VirtualMode in Gtk.ListStore?
I'm looking for a feature within the Gtk.ListStore that working like the ListView.VirtualMode in Winforms.
Is there something like that?
5
votes
2answers
564 views
WPF textbox in “virtual” mode
Is it possible to use TextBox in "virtual" mode.
I want to supply text on demand, when user scrolls through the document.
4
votes
3answers
560 views
WinForms ListView draws HELL SLOW in Windows 7 Compared to XP
I'm using ListView in VirtualMode and Details View with small icons.
This ListView have like 100,000 items inside.
The problem is that drawing this listview is much slower in Windows 7 compared to ...
3
votes
1answer
1k 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 ...
2
votes
0answers
79 views
DataGridView, Virtual Mode and “lags”
My code looks as follows:
private void dataGridView4_CellValueNeeded(object sender, DataGridViewCellValueEventArgs e)
{
Records recordsTmp = null;
recordsTmp = ...
2
votes
2answers
375 views
Focus an item in ListView with VirtualMode enabled
I have a ListView in VirtualMode.
I need a way to set focus to specific item.
The FocusedItem is not good for the VirtualMode, I need a way to set FocusedIndex or something like that, but didn't see ...
2
votes
3answers
249 views
Looking for UI library for .NET and Mono
I'm looking for a UI library for .NET and Mono, something like Gtk#, but with support for 64-bit (on Windows too), and with some widget like WinForm's ListView, with VirtualMode.
I don't want to use ...
2
votes
2answers
825 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 ...
2
votes
3answers
3k 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 ...
2
votes
1answer
4k 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 ...
1
vote
2answers
39 views
How to tell when somebody is reading an item from a CollectionBase
I'm not sure if this is possible using a CollectionBase class. I'd like to know when somebody is accessing an item in a CollectionBase class.
The final goal is to create a "VirtualMode" (similar to ...
1
vote
2answers
205 views
How to find out which DataGridView rows are currently onscreen?
In my C# (2010) application I have a DataGridView in Virtual Mode which holds several thousand rows. Is it possible to find out which cells are onscreen at the moment?
1
vote
1answer
275 views
How to show icon on all listview items in virtual mode (C#)
I'm using virtual mode of listview to show a larg data. But I don't know how to show image for each item. Who can help me ?
I wrote
private void ListContact_RetrieveVirtualItem(object sender, ...
0
votes
0answers
21 views
When should I call AutoResizeColumns for a virtual ListView?
I'm setting up a virtual ListView in details mode, and I'd like its columns to automatically resize so as to not truncate the text of the currently visible items.
Calling AutoResizeColumns works ...
0
votes
0answers
491 views
jqGrid virtual scrolling mode: how to select visible row on click
jqGrid is in virtual scrolling (scroll:1) mode. If scrolled down by some pages using scrollbar or page down key and clicked in some row, jqGrid automatically flashes and scrolls back up, clicked row ...
0
votes
2answers
142 views
How to enumerate a ListView when it is in virtual mode?
How to enumerate a ListView when it is in virtual mode ?
I'm using OfType<>() method to enumerate the list view items. But its throwing an exception like, the list view can not be enumerated ...
0
votes
0answers
431 views
C# DataGridView Virtual mode with delayed data delivery
I have a problem with a DataGridView. I try using it in virutal mode, and if I fill the data in the getCellValue method, it works. However, I can not feed the data there - I dont (and cant) have a ...
0
votes
1answer
378 views
VB.NET Using ListViewGroup in VirtualMode
Is it possible to use groups in a ListView which is in VirtualMode?
Thanks
0
votes
0answers
74 views
Why does reading metafile images during the cachevirtualitems event (virtualized listview) seem to trigger that event again?
I want to display a large list of images (some are metafiles) in a listview in large-icon view, so I set the listview's VirtualMode property to true so I can avoid loading the entire list of images in ...
0
votes
1answer
582 views
ListView [VirtualMode] change selected index
VirtualMode = true
MultiSelect = false
I can get selected index item, but how change it?
SelectedIndices readonly.
0
votes
2answers
311 views
Event handler not removing itself?
At the beginning of a VB .NET function I remove an event handler and add it again at the end of the function because the function's code would trigger those events and I do not want them to trigger ...
0
votes
1answer
62 views
Is there a workaround for Linux mono's refusal to acknowledge that I have resized the columns of my VirtualMode ListView?
When I resize a column, it does not redraw the data with the updated alignment. I've tried Invalidating, Refreshing, and a few other things. Nothing has worked. Does anyone know a workaround? I ...
0
votes
1answer
293 views
Is WinForms ListView in VirtualMode limited to 100,000,000 rows?
I have some grid scenario with > 500,000,000 rows I would like to display
in ListView.
If I artificially limit my ListView to display 100,000,000:
_listView.VirtualListSize = _data.Count;
if ...
0
votes
1answer
927 views
Disable controls on certain items in DataRepeater control
I'm using the DataRepeater control from the Visual Basic Power Pack in my C# Winforms application. The control is unbound, operating in VirtualMode.
I'm displaying multiple items in this control. ...
0
votes
1answer
409 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
4answers
679 views
C# Exception when retrieving rows from a datagrid in virtual mode
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 every ...
0
votes
5answers
3k views
How to change the row position of virtual mode DataGridView?
How to change the row position of virtual mode DataGridView?
I am using Windows Forms.
-1
votes
3answers
792 views
Cannot access the selected items collection when the ListView is in virtual mode?
I have a ListView in Virtual Mode. I wanna to access SelectedItems property.
But when I use ListView1.SelectedItems , I receive the following Exception :
Cannot access the selected items collection ...