菜鸟入门(100分)

  • 主题发起人 主题发起人 老男人
  • 开始时间 开始时间

老男人

Unregistered / Unconfirmed
GUEST, unregistred user!
大侠:
请问
if checkbox1=true and checkbox2=falsee then
begin
end;

判断结果总出人意料,怎么回事?
 
if (checkbox1=true) and (checkbox2=false) then
begin
end;

在试试!
 
运算符优先级的问题
 
接受答案了.
 
if (checkbox1.checked) and (not checkbox1.checked) then
begin
....
end;

checked不知是不是对了,可能是check或value。你看看吧
 
是delphi的吗?上面写的能通过编译吗?应该是按下面的写法吧:
if (checkbox1.Checked) and (not checkbox2.Checked) then
begin
end;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
700
import
I
后退
顶部