Einzelnen Beitrag anzeigen

Benutzerbild von mirage228
mirage228

Registriert seit: 23. Mär 2003
Ort: Münster
3.750 Beiträge
 
Delphi 2010 Professional
 
#4

Re: Markiertes Listbox Item nach Edit

  Alt 5. Mär 2005, 14:45
Zitat von Spider:
@Luckie

warum so umständlich:

Delphi-Quellcode:
var
  S: String;
begin
  S := ListBox1.Items.Strings[ListBox1.ItemIndex];
  Edit1.Text := S;
end;
@Spider

Warum so umständlich (und auch noch ohne Fehlerbehandlung) ?

Delphi-Quellcode:
if ListBox1.ItemIndex <> -1 then
  Edit1.Text := ListBox1.Items[ListBox1.ItemIndex];
/// ----- oder ------
with ListBox1 do
  if ItemIndex <> -1 then
    Edit1.Text := Items[ItemIndex];
mfG
mirage228
David F.

May the source be with you, stranger.
PHP Inspection Unit (Delphi-Unit zum Analysieren von PHP Code)
  Mit Zitat antworten Zitat