如何让fastreport3 不调用ShowReport,而直接指定打印份数打印(Print)???(100分)

  • 主题发起人 主题发起人 kongwachiu
  • 开始时间 开始时间
K

kongwachiu

Unregistered / Unconfirmed
GUEST, unregistred user!
请教各位大侠:
如何让fastreport3 不调用ShowReport,而直接指定打印份数打印(Print)??
 
if not MyChk_YL.Checked then
//不预览
begin
frxReport1.ShowReport;
end
else
begin
frxReport1.PrintOptions.ShowDialog:=MyChk_FW.Checked;
frxReport1.PrepareReport();
frxReport1.Print;
end;
这是我在用的。
 
MyChk_FW.Checked 是指要不要在打印前出现“打印选项”对话框。
 
可以结帐了不~~~
 
thanks a lot!
But I find answer my self. Anyway, thank you very much
frxReport1.PrepareReport(true);
frxReport1.PrintOptions.ShowDialog:=false;
frxReport1.PrintOptions.Copies:=3;
frxReport1.Print;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
900
SUNSTONE的Delphi笔记
S
后退
顶部