gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
wrote: Problem with MasterData in PageFooter still remains. Try to store value from MasterData in variable in MasterData.OnAfterPrint event and print this variable on PageFooter
-
Try to click on splitter at the bottom of code page
-
Try to use child band for TfrxPageHeader and set child's visiblity in script
-
You may get parameters from cmd in your Delphi's program and then set report's variables in TfrxReport.OnGetValue event
-
You may change TfrxReport.ScriptText property
-
You may use user function. In user functions you may change sort order of your dataset or format your disk if you want
-
Try Var FReport : TfrxReport; Begin conv := TConverterQr2Fr.Create; FReport := TfrxReport.Create(nil); conv.Source := fmPrintCommande.QrCommande; conv.Target := FReport; conv.Convert; FReport.SaveToFile('c:\report\commande.fr3'); FReport.Free; conv.…
-
Try to use frxQuery.ExecSQL command
-
You can't print multiple pages with TfrxOLEView object. You may split your PDF to many PDFs with one page and use TfrxOLEView object for each PDF (page)
-
Can you show all your code? What class of FReport - TfrxReport?
-
You may set TfrxPDFExport->PageNumbers and export a range of pages
-
Uninstall FR, install again and remove frxpngimage.pas, frxpnglang.pas from LibD11 folder wrote: With 4.8 it all compiles successfully ;however with 4.9, I get the following error... delphi11 error: fqb110.dpk(45) Fatal: F1026 File not found:…
-
Try to place TfrxLineView on TfrxPageHeader band
-
I hope that the new version of the FR (FR5) will remain a standart interface
-
See FRDemo section What's new in Fast Report 4 Print copy names report
-
See a demo project here: http://rapidshare.com/files/189351334/test.zip.html
-
or assign TfrxReport.Dataset with your dataset
-
Set TfrxDetailData.Columns, TfrxDetailData.ColumnWidth, TfrxDetailData.ColumnGap
-
Try to use batch report: create report for each record and don't clear previous report using TfrxReport.PrepareReport(False)
-
Add TfrxPreview in your project. Set frxReport1.Preview to frxPreview1 and use frxReport1.ShowReport for show report in frxPreview1
-
You can write user function. See Developer Manual chapter Custom Functions Connection to Report
-
wrote: ...thanks for your answer, but "Page" is always nil in this event... Is Page1 TfrxReportPage exists in your report? wrote: someone else can help me to set page margins in preview? Use procedure TForm1.frxReport1BeginDoc(Sender…
-
rulonv use frxReport1.LoadFromFile('1frf'); frxReport1.SaveToFile('1.fr3');
-
Try to use report with one MasterData and two Detail data bands for different data group for every user
-
I think you must decrease page height in designer
-
You can't to use FB server on port 3051 without "gds_db 3051/tcp" in services
-
You must place bands in such order (set top property) PageHeader GroupHeader MasterData GroupFooter
-
Do you add in services gds_db 3051/tcp ? Can you connect to FR 2.1 from other application?
-
If you print report on laser printer - is scanner can read barcode?
-
Sorry, try TfrxReport.OnBeginDoc procedure TForm1.frxReport1BeginDoc(Sender: TObject); var page: TfrxReportPage; begin     Page:=TfrxReportPage(frxReport1.FindObject('Page1'));     Page.LeftMargin:=20;     Page.RightMargin:=10;    …