![]() |
ActionList ?? ListBox ?? Ich weiß nicht mehr weiter
Ich hab mehrere Namen in meiner ComboBox und will immer infos zu dem mackierten Namen in einem Panel,Memo,Label,...etc. (irgend einem text) angezeigt bekommen !!
Wie schaffe ich das ???? |
Re: ActionList ?? ListBox ?? Ich weiß nicht mehr weiter
Hallo,
die einfachste möglichkeit wäre, dass du im OnSelect der ComboBox was in einem Label oder so anzeigen lässt guckst du:
Code:
[edit] Variable "S" eingefügt [/edit]
procedure TForm1.ComboBox1Select(Sender: TObject);
var S: String; begin Label1.Caption := ''; case ComboBox1.ItemIndex of 0: S := 'Herr Mustermann! München'; 1: S := 'Frau Mustermann! Berlin'; 2: S := 'Fräulein Mustermann! Köln'; end; Label1.Caption := S; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:35 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz