VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Finds the node in the TreeView.

by nofx (8 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Tue 18th January 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Finds the node in the TreeView.

Rate Finds the node in the TreeView.



   as whatever you want.
2. Place a TextBox controls.
3. One command button.

'Put this code into the command button.
Private Sub Command1_Click()
    Dim NodX As Node

        For Each NodX In tvwDB.Nodes
            If NodX.Text = UCase(Text1.Text) Then
                lNod = NodX
                NodX.Selected = True
                TreeView1.SetFocus                
            End If
        Next
End Sub

'Now enter a Node name in the text box and hit the Command1 button.
'E-Mail me and tell me what you think of it or if u have any questions.


Download this snippet    Add to My Saved Code

Finds the node in the TreeView. Comments

No comments have been posted about Finds the node in the TreeView.. Why not be the first to post a comment about Finds the node in the TreeView..

Post your comment

Subject:
Message:
0/1000 characters