listview : add,remove, display into textboxes
listview : add,remove, display into textboxes
Rate listview : add,remove, display into textboxes
(1(1 Vote))
'add
set xlist = Listview1.ListItems.Add(, , "your txt")
xlist.subitems(1) = "heheh"
'(2) for other subitems
'del highlighted list
Listview1.ListItems.Remove (Listview1.SelectedItem.Index)
'display into textbox
text1 = Listview1.SelectedItem
text2 = Listview1.ListItems.Item(Listview1.SelectedItem.Index).SubItems(1)
'gud luck
'you may use xlist or listview1
listview : add,remove, display into textboxes Comments
No comments yet — be the first to post one!
Post a Comment