|
-
Jul 5th, 2000, 10:01 AM
#1
Thread Starter
New Member
Hi, I worked over the last weekend to try to figure it out about the treeview with check box. If I have the check box checked without the image, it works. However, if I have a iamge with the node, and have the check box checked in the codes, it did not owrk. I tested it in 3 machines. One with Win95, VB6(SP3) and 2 with VB6(SP4), WINNT. Can anyone try to duplicate it? Thanks.
------------------------------
Private Sub Form_Load()
Dim mNode As node
Set mNode = TreeView1.Nodes.Add()
mNode.Text = "Book"
mNode.Image = "folder"
mNode.Checked = True
End Sub
--------------------------------
Bill
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|