Hi all
how are you all brothers
i need help in listview cmd
i wanna load my yahoo bots
what i use cmd for that i am using visual basic 6
here is a shot plz check
Attachment 91019
Printable View
Hi all
how are you all brothers
i need help in listview cmd
i wanna load my yahoo bots
what i use cmd for that i am using visual basic 6
here is a shot plz check
Attachment 91019
try the following way .Code:
Dim Item as ListItem 'variable for your subitems
ListView1.ListItems.Clear 'Clear your Listview before loading a new data
While Not rs.eof
Set Item = ListView1.ListItems.Add(,,rs!One)
Item.Subitems(1) = rs!Two
rs.movenext
Wend