把access中的数据写入VB中数状结构控键,要求在控键上显示。应该怎样写啊解决办法

把access中的数据写入VB中数状结构控键,要求在控键上显示。应该怎样写啊。
把access中的数据写入VB中数状结构控键,要求在控键上显示。应该怎样写啊。 

就像QQ上显示其好友一样 

Private Sub Command1_Click() 
Dim nodx As Node 
Set nodx = TreeView1.Nodes.Add(, , "zf", "紫风无痕关系(双击收起)") 
Set nodx = TreeView1.Nodes.Add("zf", tvwChild, "zfwife", "老婆") 
Set nodx = TreeView1.Nodes.Add("zf", tvwChild, "zflover", "情人") 
Set nodx = TreeView1.Nodes.Add("zf", tvwChild, "zffriend", "朋友") 
Set nodx = TreeView1.Nodes.Add("zfwife", tvwChild, "lp1", "大老婆") 
Set nodx = TreeView1.Nodes.Add("zfwife", tvwChild, "lp2", "二老婆") 
Set nodx = TreeView1.Nodes.Add("zfwife", tvwChild, "lp3", "三老婆") 
Set nodx = TreeView1.Nodes.Add("zfwife", tvwChild, "lp4", "四老婆") 
Set nodx = TreeView1.Nodes.Add("zfwife", tvwChild, "lp5", "五老婆") 
Set nodx = TreeView1.Nodes.Add("zflover", tvwChild, "qr1", "1号情人") 
Set nodx = TreeView1.Nodes.Add("zflover", tvwChild, "qr2", "2号情人") 
Set nodx = TreeView1.Nodes.Add("zflover", tvwChild, "qr3", "3号情人") 
Set nodx = TreeView1.Nodes.Add("zffriend", tvwChild, "py1", "张三") 
Set nodx = TreeView1.Nodes.Add("zffriend", tvwChild, "py2", "李四") 
Set nodx = TreeView1.Nodes.Add("zffriend", tvwChild, "py3", "王麻子") 
Set nodx = TreeView1.Nodes.Add("py1", tvwChild, "pylp1", "张三的老婆") 
Set nodx = TreeView1.Nodes.Add("py1", tvwChild, "pylp2", "张三的孩子") 
nodx.EnsureVisible 
End Sub 


比如也就是要求把 朋友这一项 写在数据库中 从数据库中那出来该怎样写呢谢谢拉

------解决方案--------------------
查看一下TreeView控件的使用方法。至于数据的加载也是很简单的。