树的遍历问题(20分)

  • 主题发起人 主题发起人 潮州人
  • 开始时间 开始时间

潮州人

Unregistered / Unconfirmed
GUEST, unregistred user!
用数据表做了一个用户管理模块,包括了组和用户的二层树,想在打开用户管理窗口后,树自
动的选择到登录用户的节点上. 应该怎么样写.(事实上是遍历树节点的值与用户名比较).
 
j := -1;
for i:= 0 to treeview1.items.count -1 do
if treeview1.Items.Text := 'your text' then j := i;
if j = -1 then exit;
treeview1.AutoExpand := true;
treeview1.Items[j].selected := true;
form1.FocusControl(treeview1);
 
接受答案了.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
931
DelphiTeacher的专栏
D
D
回复
0
查看
724
DelphiTeacher的专栏
D
后退
顶部