Einzelnen Beitrag anzeigen

Wheelie

Registriert seit: 21. Okt 2003
Ort: Dresden
177 Beiträge
 
#2

Re: Doppelklick auf ListBox Item, danach neues Fenster

  Alt 10. Jan 2004, 22:45
Ich mache das immer so ...

Delphi-Quellcode:
procedure TForm1.ListBox1DblClick(Sender: TObject);
begin
  Case ListBox1.ItemIndex of
    0: Form2.Show;
    1: Form3.Show;
    2: Form4.Show;
  end;
end;

end.
  Mit Zitat antworten Zitat