Tagged Questions

2
votes
0answers
80 views

DataGridView, Virtual Mode and “lags”

My code looks as follows: private void dataGridView4_CellValueNeeded(object sender, DataGridViewCellValueEventArgs e) { Records recordsTmp = null; recordsTmp = ...
1
vote
2answers
209 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?
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
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
680 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.