|
| |||||||||
| Tags: limits, listview |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| limits on listview
Hello, Can anyone please tell me what is the limits on listview's # of rows and columns? Thanks in advance. |
|
#2
| ||||
| ||||
|
Here is the code i'm using. Sorry should have mentioned this earlier as there are 1612 rows inserted my listview but the following line failes at 1363 each time I run it. LItem = listMessages.Items(i) Code: Dim i As Integer
Dim LItem As ListViewItem
Dim intIndex As Integer
For i = 0 To listMessages.Items.Count - 1
LItem = listMessages.Items(i)
If LItem.Checked = True Then
intIndex = LItem.Index
txtStatus.Text = txtStatus.Text & "REMOVING: " & LItem.Text & vbCrLf
'## Delete Email ##
inbox.DeleteMessage(CInt(LItem.Text), True)
'## Delete from listMessages ##
LItem.Remove()
End If
Next |
|
#3
| ||||
| ||||
|
Loading a listview with a million items at a time may at the very minimum take a very long time to load providing it doesn't crash. You problably should only load the minimum necessary items This is possible with virtual list view using a LVS_OWNERDATA style. Virtual list view does not store information on its items. Instead it stores the number of items in the list. When virtual list view is redrawn it requests only the information on the items actually visible on the screen. Also, if memory serves me correctly, there is a 64k limit on the standard Win32 listview control. So, the only way you would possibly handle a million items is to use the virtual listview. |
|
#4
| ||||
| ||||
|
It is 32767, it's the highest positive value of a signed 16-bit integer and this was tested with no columns. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "limits on listview" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problem with Listview Controls in VB.NET | Abel18 | Software Development | 6 | 08-10-2011 10:10 PM |
| how to use Vscrollbars with Listview | Suffix | Software Development | 1 | 01-10-2011 12:46 PM |
| Want to delete the data using the ListView | Flaco | Software Development | 6 | 20-01-2010 05:42 PM |
| Transfer the data to another listview | Chhaya | Software Development | 3 | 05-10-2009 01:19 PM |
| ListView or ListBox | Heather5 | Software Development | 3 | 29-08-2009 01:10 AM |