Вопрос про TfrxReport.DoGetValue
Eugene Lachinov
Санкт-Петербург
Из каких соображений убран код ?
function TfrxReport.DoGetValue(const Expr: String; var Value: Variant): Boolean;
...
{ searching in the script }
v := FScript.FindLocal(Expr);
if v <> nil then
begin
Value := v.Value;
Result := True;
Exit;
end
end;