Thema: Delphi Checkboxen

Einzelnen Beitrag anzeigen

Benutzerbild von S2B
S2B

Registriert seit: 1. Feb 2004
Ort: Aachen
1.268 Beiträge
 
#8

Re: Checkboxen

  Alt 3. Jul 2004, 21:08
Delphi-Quellcode:
  if CheckBox1.Checked=true then
  Label1.Caption:=CheckBox1.Caption;
  if CheckBox2.Checked=true then
  Label1.Caption:=CheckBox2.Caption;
  if (CheckBox1.Checked=true) and (CheckBox2.Checked=true) then
  Label1.Caption:=CheckBox1.Caption + ' ' + CheckBox2.Caption;
Das wäre eine Möglichkeit!
Simon Praetorius
Gruß
S2B
  Mit Zitat antworten Zitat