TREEVIEW - CARREGAR DADOS AO DIGITAR

RICOCARDOZO 09/08/2007 08:56:05
#230131
Olá tenho este código para carregar dados em uma treeview.
Será que é possivel criar uma rotina que ao digitar um texto em um text, ele vai selecionando na treeview tipo (autosearch).


Private Sub carregaopcoes()
TabelaEspecie

TB_ESPECIE.LockType = adLockOptimistic
TB_ESPECIE.CursorType = adOpenStatic 'somente leitura
TB_ESPECIE.CursorLocation = adUseServer

TB_ESPECIE.Open "SELECT * FROM ESPECIE ", BD_CAIXA

Do While Not TB_ESPECIE.EOF
Set nodx = TreeView1.Nodes.Add(, , , TB_ESPECIE!descricao)
'Set nodr = TreeView1.Nodes.Add(nodx, tvwChild, , TB_ESPECIE!descricao)
TB_ESPECIE.MoveNext
Loop
FechaTabelaEspecie
End Sub




Tópico encerrado , respostas não são mais permitidas