Einzelnen Beitrag anzeigen

Benutzerbild von s.h.a.r.k
s.h.a.r.k

Registriert seit: 26. Mai 2004
3.159 Beiträge
 
#2

AW: edit.text ein item einer listbox zuweisen

  Alt 18. Mai 2011, 19:32
Edit1.Text := ComboBox1.Text; oder
Delphi-Quellcode:
if (ComboBox1.ItemIndex > -1) then
  Edit1.Text := ComboBox1.Items[ComboBox1.ItemIndex];
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
  Mit Zitat antworten Zitat