home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.2#0"; "COMCTL32.OCX"
- Begin VB.Form Treeview
- BorderStyle = 1 'Fixed Single
- Caption = "Form1"
- ClientHeight = 4245
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 3105
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4245
- ScaleWidth = 3105
- StartUpPosition = 1 'CenterOwner
- Begin ComctlLib.TreeView TreeView1
- Height = 3615
- Left = 240
- TabIndex = 0
- Top = 120
- Width = 2415
- _ExtentX = 4260
- _ExtentY = 6376
- _Version = 327682
- HideSelection = 0 'False
- Style = 6
- Appearance = 1
- End
- Attribute VB_Name = "Treeview"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- TreeView1.HitTest.Text
- End Sub
- Private Sub Form_Terminate()
- Unload Me
- End Sub
- Private Sub TreeView1_AfterLabelEdit(Cancel As Integer, NewString As String)
- Debug.Print "After = " & NewString
- End Sub
- Private Sub TreeView1_BeforeLabelEdit(Cancel As Integer)
- Debug.Print "before = " & Cancel
- End Sub
- Private Sub TreeView1_NodeClick(ByVal Node As ComctlLib.Node)
- Debug.Print "node = " & Node
- End Sub
-