A
autumn
Unregistered / Unconfirmed
GUEST, unregistred user!
// 默认情况下Delphi IDE不允许下面程序(编译不通过)
const
iATest:integer=10;
begin
if TComponent(Sender).Tag<>10 then
iATest:=8;
.......
//要打开或关闭什么IDE开关才能允许上面程序通过?
const
iATest:integer=10;
begin
if TComponent(Sender).Tag<>10 then
iATest:=8;
.......
//要打开或关闭什么IDE开关才能允许上面程序通过?