Hello,
I have a grid with RowMode and MultiSelect both set to true. This is in Access 2010.
In the video you see that initially the list is sorted by the "Priority" column. I then resort by the "Customer" column and select 4 rows. The button on the right simply tells me how many rows are selected using this simple code:
Dim SelectedRows() As TSelItemInfo
SelectedRows = ProcessingStepList.SelItems.GetArray
MsgBox UBound(SelectedRows)
Erase SelectedRows
At first it correctly reports that 4 rows are selected. I then re-sort the list by clicking the Priority column header. The list "appears" to still have 4 rows selected but the button says that only 1 row is selected.
I tested this many times and sometimes it reports fewer rows than it shows and other times it reports more rows. It is very random.
Edited by user
2016-03-11T01:35:15Z
|
Reason: Not specified