LISTVIEW
Tenho um text e uma listview
Tenho que mover as linha do listview conforme vou digitado no text, existe uma maneira de fazer isto.
Obrigado
Tenho que mover as linha do listview conforme vou digitado no text, existe uma maneira de fazer isto.
Obrigado
vc vai precisar procurar...
pensando que esta tudo ordenado..
dim Item as listItem
for each Item in listview1.listtems
if item.text like text1.text then exit for
next item
if not item is nothing then
item.selected=true
item.ensurevisibled
pensando que esta tudo ordenado..
dim Item as listItem
for each Item in listview1.listtems
if item.text like text1.text then exit for
next item
if not item is nothing then
item.selected=true
item.ensurevisibled
no change do textbox
talvez vc precise fazer algumas protecoes para verificar se o texto eh valido e coisas do tipo - mas no geral isto deve resolver
talvez vc precise fazer algumas protecoes para verificar se o texto eh valido e coisas do tipo - mas no geral isto deve resolver
aqui um exemplo simples de como fazer
for each Item in listview1.listtems
if item.text like text1.text & "*" then exit for
next item
for each Item in listview1.listtems
if item.text like text1.text & "*" then exit for
next item
Tópico encerrado , respostas não são mais permitidas