怎样让CheckListBox里的项目都自动被选上?(20分)

虚雷

Unregistered / Unconfirmed
GUEST, unregistred user!
程序运行时,动态的在CheckListBox里添加了很多项目,但默认都是非选中状态,
怎样让项目添加进去后自动的给每个前面都打上勾(选中)?
谢谢!
 
用一个循环,
设置每个item的checked为true
 
怎么设啊?
我不会,告诉我吧,谢谢了。
 
For intindex:=0 to Rclbx_Itme.items.count-1do
begin
Rclbx_Itme.Checked[intindex]:=True
end;
 
接受答案了.
 
顶部