请教:使用TreeView控件时出现问题
通过下面的一段代码构造树和子树的内容,但是运行时出现:“ImageList必须初始化”的错误!而我并没有使用ImageList控件,请问这是怎么回事?谢谢了!
代码如下:
For i1 = 0 To 6
Set no1 = TreeView1.Nodes.Add(, , , root(i1), 2)
no1.Tag = root(i1)
For i2 = 0 To 5
If childs(i1, i2) = "" Then
Exit For
End If
Set no2 = TreeView1.Nodes.Add(no1.Index, tvwChild, , childs(i1, i2), 1)
no2.Tag = childs(i1, i2)
no2.ForeColor = vbBlue
Next
Next