Thema
:
Delphi
ComboBox - Einträge per Button auswählen
Einzelnen Beitrag anzeigen
mirage228
Registriert seit: 23. Mär 2003
Ort: Münster
3.750 Beiträge
Delphi 2010 Professional
#
3
Re: ComboBox - Einträge per Button auswählen
11. Mai 2004, 18:47
Du kannst ja machen:
markieren
Delphi-Quellcode:
var
Index
: Integer;
begin
Index
:= ComboBox1.Items.IndexOf('
xyz
');
if
Index
> -1
then
ComboBox1.ItemIndex :=
Index
;
end
;
mfG
mirage228
David F.
May the source be with you, stranger.
PHP Inspection
Unit
(Delphi-
Unit
zum Analysieren von PHP Code)
Zitat
mirage228
Öffentliches Profil ansehen
Besuche die Homepage von mirage228!
Mehr Beiträge von mirage228 finden