gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
Use Ctrl+C, Ctrl+V
-
Use cross' OnCalcWidth event
-
Use TfrxMemoView(frxReport1.FindObject('YourFieldMemo')).Visible := False;
-
wrote: I'm using Arial, Times New Romand and Courier New, so I think that fonts are not the problem. Did you export with embedded fonts option?
-
Use two-pass report
-
Check TfrxDesigner.Restrictions
-
Did you add TfrxDesigner to your project? Also you can add frxDesgn unit in uses list
-
It seems you sill use design-time packages of FR Embarcadero edition
-
wrote: I already tried that Show your code
-
frxReport1.PrintOptions.PageNumbers := '2';
-
frxPreview1.Lock; frxReport1.Print; frxPreview1.UnLock; or frxReport1.PreviewPages.Print;
-
You can create frxrcClass.pas. See FR's Res folder Add path to LibD17, LibD17x64 folders in mk.bat and run it
-
Can you found frxrcClass.pas in C:\Program Files (x86)\FastReports\LibD17 folder?
-
Try to set page's visiblity in main procedure of script
-
frxReport1.Preview := nil; frxReport1.PrepareReport(True); frxReport1.PrepareReport(False); frxReport1.PrepareReport(False); frxReport1.Preview := frxPreview1; frxReport1.ShowPreparedReport;
-
Place line on separate child band with height = 1 and use Engine.ShowBand to show your child band with line when you want
-
Check Engine.FreeSpace
-
See here: http://www.fast-report.com/en/forum/?p=/discussion/10148
-
See here: http://www.fast-report.com/en/forum/?p=/discussion/10148
-
Use third-party components See attach
-
wrote: I made something like the Gpi test example, in this way the space of the page it isn't enough for all my child bands! Set Page1.LargeDesignHeight to True
-
wrote: Sorry but I don't understand! I made this try but for me it doesn't work! See attach
-
Try to set MasterData.PrintIfDetailEmpty to True. What resuld did you get?
-
Use latest 4.13.8
-
Use separate stretched child band for each subreport
-
Attach your report template
-
Use separate stretched child band for each subreport. Set subreport.PrintOnParent to True
-
See a Programmer's manual: wrote: 1.9 Building a composite report (batch printing) In some cases it is required to organize printing of several reports at once, or capsulate and present several reports in one preview window. To perform this, t…
-
See an User's manual: wrote: HTML-tags in the ???Text??? object Yes, this object does understand some simple HTML tags. Tags can be located inside the text of an object. Tags are disabled by default; to enable them, either select the ???Allow…
-
You can do it with AllowHTMLTags option of TfrxMemoView