LISTVIEW

USUARIO.EXCLUIDOS 15/04/2004 16:17:49
#20801
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
USUARIO.EXCLUIDOS 15/04/2004 16:33:31
#20807
Resposta escolhida
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

USUARIO.EXCLUIDOS 15/04/2004 17:02:24
#20813
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
USUARIO.EXCLUIDOS 16/04/2004 09:29:35
#20905
aqui um exemplo simples de como fazer

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