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