S sbs Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-17 #1 如何判断LISTBOX中的有没有ITEMS项选中或者让LISTBOX中的第一项一直处于选中状态?
S SanMao Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-17 #2 1.当ListBox.ItemIndex等于-1时就没有项被选中, 2.ListBox.ItemIndex:=0 就是选择列表框的第一项
伊 伊天仇 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-17 #3 老兄,看看TListBox的帮助吧!其中有个Selected属性,多试几下,保证你自己能解决!
D del520 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-17 #4 同意sanMao 如果想让第四项一直选中就用 listbox1.itemindex:=3 (起始为0)
伊 伊天仇 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-17 #5 判断是否item被选中: for i:=0 to ListBox.Items.Count-1 do if ListBox.Selected then begin showmessage('有item被选中'); break; end 让第一项被选中: ListBox.ItemIndex:=0;
判断是否item被选中: for i:=0 to ListBox.Items.Count-1 do if ListBox.Selected then begin showmessage('有item被选中'); break; end 让第一项被选中: ListBox.ItemIndex:=0;