如何显示多个复选框的内容
procedure TForm1.CheckBox1Click(Sender: TObject);begin
str_taste:='';
If CheckBox1.Checked then
If str_taste='' then
str_taste:=str_taste + CheckBox1.Caption
else
str_taste:=str_taste + '.' +CheckBox1.Caption;
If CheckBox2.Checked then
If str_taste='' then
str_taste:=str_taste + CheckBox2.Caption
else
str_taste:=str_taste +'.' + CheckBox2.Caption;
If CheckBox3.Checked then
If str_taste='' then
str_taste:=str_taste + CheckBox3.Caption
else
str_taste:=str_taste + '.' + CheckBox3.Caption;
If CheckBox4.Checked then
If str_taste='' then
str_taste:=str_taste + CheckBox4.Caption
else
str_taste:=str_taste + '.' + CheckBox4.Caption;
If CheckBox5.Checked then
If str_taste='' then
str_taste:=str_taste + CheckBox5.Caption
else
str_taste:=str_taste + '.' + CheckBox5.Caption;
If CheckBox6.Checked then
If str_taste='' then
str_taste:=str_taste + CheckBox6.Caption
else
str_taste:=str_taste + '.' + CheckBox6.Caption;
end;
ShowMessage('您的爱好是:' + str_taste+#13#10);
为什么只显示了一个复选框里的内容??
如果要多个复选框该如何写代码..
谢谢