Gordyne 0 Denunciar post Postado Outubro 9, 2009 Olá a todos, sou novo no fórum e tenho uma pergunta que creio que seja bem simples... Como faço pra checar se um item de uma listbox foi selecionado? Tentei: If listbox1.selcount = 1 then Mas não funcionou. Compartilhar este post Link para o post Compartilhar em outros sites
Chrnos 30 Denunciar post Postado Outubro 10, 2009 Você quer retornar o item que foi selecionado num Listbox, é isto? Se for, você pode fazer algo assim: procedure TForm1.Button2Click(Sender: TObject); var I: integer; begin For I:= 0 to ListBox1.Count -1 do begin if ListBox1.Selected[I] then showmessage ('Item selecionado: ' + ListBox1.Items.Strings[I]); end; end; []'s Compartilhar este post Link para o post Compartilhar em outros sites