I have a ListView which I have set the following:
The ListView is displayed correctly and has a checkbox at the begining of each line. I can then place a check mark in any item I choose.
I want to be able to click a command button and determine which lines/items I have checked.
Can someone help me?
Code:
With Me.ListView1
'Set ListView style
.View = lvwReport
.GridLines = True
.MultiSelect = True
.FullRowSelect = True
.Checkboxes = True
.ListItems.Clear
.ColumnHeaders.Clear
End With
The ListView is displayed correctly and has a checkbox at the begining of each line. I can then place a check mark in any item I choose.
I want to be able to click a command button and determine which lines/items I have checked.
Can someone help me?