M Maarten Dec 21, 2004 #1 Hello, How do i get the text of a checked item in a checkedlistview Thanks. Maarten
H Herfried K. Wagner [MVP] Dec 21, 2004 #2 Maarten said: How do i get the text of a checked item in a checkedlistview Click to expand... CheckedListBox or ListView?
Maarten said: How do i get the text of a checked item in a checkedlistview Click to expand... CheckedListBox or ListView?
M Maarten Dec 21, 2004 #3 sry this was a mixup, it's a listview with the checkbox property set on true kind regards Maarten
H Herfried K. Wagner [MVP] Dec 21, 2004 #4 Maarten said: it's a listview with the checkbox property set on true Click to expand... \\\ For Each lvi As ListViewItem In Me.ListView1.CheckedItems MsgBox(lvi.Text) Next lvi ///
Maarten said: it's a listview with the checkbox property set on true Click to expand... \\\ For Each lvi As ListViewItem In Me.ListView1.CheckedItems MsgBox(lvi.Text) Next lvi ///
M Maarten Dec 22, 2004 #5 thank you it works fine kind regards, Maarten Herfried K. Wagner said: \\\ For Each lvi As ListViewItem In Me.ListView1.CheckedItems MsgBox(lvi.Text) Next lvi /// Click to expand...
thank you it works fine kind regards, Maarten Herfried K. Wagner said: \\\ For Each lvi As ListViewItem In Me.ListView1.CheckedItems MsgBox(lvi.Text) Next lvi /// Click to expand...