标题:如何显示多个复选框的内容
取消只看楼主
adam1103
Rank: 1
等 级:新手上路
帖 子:44
专家分:0
注 册:2007-7-24
 问题点数:0 回复次数:2 
如何显示多个复选框的内容
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);

为什么只显示了一个复选框里的内容??
  如果要多个复选框该如何写代码..

谢谢
搜索更多相关主题的帖子: 复选 
2007-11-27 21:50
adam1103
Rank: 1
等 级:新手上路
帖 子:44
专家分:0
注 册:2007-7-24
得分:0 
如何才能使每一個控件中的Click事件中引用該過程??

 请赐教..

谢谢个为了..
2007-11-30 21:29
adam1103
Rank: 1
等 级:新手上路
帖 子:44
专家分:0
注 册:2007-7-24
得分:0 
太感谢了
 谢谢你的说明..

想了好长时间都没有想通  原来是书上写错了

...
2007-12-03 21:32



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-188815-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.181913 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved