Присвоение значения переменной
Присвоение переменной определенной в отчете значения типа boolean.
procedure SubdetailData1OnBeforePrint(Sender: TfrxComponent);
begin
...
Set('IsPayRecord',False);
...
end;
Ругается: Invalid variant type
procedure SubdetailData1OnBeforePrint(Sender: TfrxComponent);
begin
...
Set('IsPayRecord',False);
...
end;
Ругается: Invalid variant type
Комментарии
True - Set('IsPayRecord',1);
False - Set('IsPayRecord',0);