关于RAVE的问题 ( 积分: 100 )

  • 主题发起人 主题发起人 xupeih
  • 开始时间 开始时间
X

xupeih

Unregistered / Unconfirmed
GUEST, unregistred user!
我用RAVE做一个报表,报表不足一页时在紧跟内容后加一行“以下空白”,我的问题是,如果所打的内容正好一页,“以下空白”就不用再打了,请问高手该如何解决,谢谢!
 
我用RAVE做一个报表,报表不足一页时在紧跟内容后加一行“以下空白”,我的问题是,如果所打的内容正好一页,“以下空白”就不用再打了,请问高手该如何解决,谢谢!
 
怎么没人帮忙啊!
 
用RvSystem在代码中控制;
RvSystem.BaseReport.SectionBottom := 11.1;
RvSystem.BaseReport.SectionRight := 7.5;
RvSystem.BaseReport.FontName := '宋体';
RvSystem.BaseReport.FontSize := 9;
RvSystem.BaseReport.FontColor := clBlue;
RvSystem.BaseReport.PrintFooter('打印人:' + UserName + ' 打印时间:' +
FormatDateTime('YY/MM/DD HH:NN', Now), pjRight);
RvSystem.BaseReport.SectionBottom := 11.5;
RvSystem.BaseReport.FontName := '宋体';
RvSystem.BaseReport.FontSize := 9;
RvSystem.BaseReport.FontColor := clBlack;
RvSystem.BaseReport.PrintFooter('第' + IntToStr(RvSystem.BaseReport.CurrentPage) + '页', pjCenter);
或者可以在事件编写代码。
 
不好意思,本人比较笨,没明白,另外事件编写代码如何写?
 
后退
顶部