📄 demo.pas
字号:
procedure ActReportDemo;
var
actrptCool: TActReport;
tbl: TTable;
begin
// some preparation codes here, begin
…
// some preparation codes here, end
actrptCool := TActReport.Create;
actrptCool.Initialize(tbl, '报表标题');
actrptCool.SetFileName('report0.ypj');
actrptCool.LoadRep;
actrptCool.ShowModal; // give the user a modification chance
actrptCool.PreviewRep;
actrptCool.Print;
// some other codes here, begin
…
// some other codes here, end
actrptCool.Free;
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -