delphi checkbox用法
ifcheckbox1.Checked=truethenstr:=checkbox1.Caption;ifcheckbox2.Checked=truethenstr:=s...
if checkbox1.Checked=true then
str:=checkbox1.Caption;
if checkbox2.Checked=true then
str:=str+''+checkbox2.Caption;
if checkbox3.Checked=true then
str:=str+''+checkbox3.Caption;
AdoDataset1.close;
Adodataset1.comandtext:=select * from table1 where 名称=??
AdoDataset1.openAdoDataset1.close;
如何能选取对应所有三个内容的数据 展开
str:=checkbox1.Caption;
if checkbox2.Checked=true then
str:=str+''+checkbox2.Caption;
if checkbox3.Checked=true then
str:=str+''+checkbox3.Caption;
AdoDataset1.close;
Adodataset1.comandtext:=select * from table1 where 名称=??
AdoDataset1.openAdoDataset1.close;
如何能选取对应所有三个内容的数据 展开
1个回答
2013-10-21
展开全部
if checkbox1.Checked=true then
str:=''''+checkbox1.Caption+'''';
if checkbox2.Checked=true then
str:=str+','''+checkbox2.Caption+'''';
if checkbox3.Checked=true then
str:=str+','''+checkbox3.Caption+'''';
AdoDataset1.close;
Adodataset1.comandtext:='select * from table1 where 名称 in ('+str+')';
//类似于这样的sql语句 select * from table1 where 名称 in('国美','苏宁','京东商城')
AdoDataset1.openAdoDataset1.close;
str:=''''+checkbox1.Caption+'''';
if checkbox2.Checked=true then
str:=str+','''+checkbox2.Caption+'''';
if checkbox3.Checked=true then
str:=str+','''+checkbox3.Caption+'''';
AdoDataset1.close;
Adodataset1.comandtext:='select * from table1 where 名称 in ('+str+')';
//类似于这样的sql语句 select * from table1 where 名称 in('国美','苏宁','京东商城')
AdoDataset1.openAdoDataset1.close;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询