| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 3028 人关注过本帖
标题:如何显示多个复选框的内容
取消只看楼主 加入收藏
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
快速回复:如何显示多个复选框的内容
数据加载中...
 
   



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

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