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!