Registriert seit: 21. Dez 2002
Ort: Lenzburg
861 Beiträge
Delphi 6 Professional
|
Re: Auswahl aus der Listbox
2. Apr 2004, 21:35
Also bei mir hats geklappt.
Delphi-Quellcode:
procedure TMainForm.ListBoxKeyPress(Sender: TObject; var Key: Char);
begin
if Uppercase(Key) = 'U' then
begin
if ListBox.ItemIndex = 0 then
ListBox.ItemIndex := ListBox.Items.Count-1
else
ListBox.ItemIndex := ListBox.ItemIndex - 1;
end;
if Uppercase(Key) = 'D' then
begin
if ListBox.ItemIndex = ListBox.Items.Count - 1 then
ListBox.ItemIndex := 0
else
ListBox.ItemIndex := ListBox.ItemIndex + 1;
end;
end;
mfg Tobias
Tobias Die Physik ist für die Physiker eigentlich viel zu schwer.
|