A FastReport TfsScript objektumában támogatott Pascal nyelven írt program.
<Script>
procedure Initialize;
begin
Data1['FelhasznaloNev'] := <UserName>
end;
function CheckParatlanSzam: Boolean;
begin
Result := (<Value> = NULL) or ((<Value> > 0) and (<Value> mod 2 = 1));
if not Result then
ShowMessage('Ez nem pozitív páratlan szám!');
end;
</Script>