I icefire Unregistered / Unconfirmed GUEST, unregistred user! 1999-09-13 #1 如何动态修改REPORTBUILDER中报表的标题?或者报表中的变量怎样引用外部数据,例如:在一个报表中可以输入一个条件,我怎样才能在报表中显示出这个条件?
S silly Unregistered / Unconfirmed GUEST, unregistred user! 1999-09-13 #2 把标题作成一个LABLE,在调用之前赋值就可以了。 Application.CreateForm(TfrmPreview_KX,frmPreview_KX); frmPreview.pprptCaption.Caption :="Your Caption"; try frmPreview.ppReport1.PrintToDevices ; frmPreview.ppviewer1.LastPage; frmPreview.ppviewer1.FirstPage ; frmPreview.ShowModal ; finally frmPreview.Free; end;
把标题作成一个LABLE,在调用之前赋值就可以了。 Application.CreateForm(TfrmPreview_KX,frmPreview_KX); frmPreview.pprptCaption.Caption :="Your Caption"; try frmPreview.ppReport1.PrintToDevices ; frmPreview.ppviewer1.LastPage; frmPreview.ppviewer1.FirstPage ; frmPreview.ShowModal ; finally frmPreview.Free; end;