gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 565
- Last Active
- Roles
- Members, FR Team
Comments
-
Try frxReport.PrintOptions.ShowDialog := True; while not InputDataSet.Eof do Begin // some processing here frxReport.PrepareReport; frxReport.print; if frxReport.PrintOptions.ShowDialog then frxReport.PrintOptions.ShowDialog := False; InputDat…
-
Try to check TfrxReport.PreviewPages.Page[0].AllObjects.Count
-
You can't to translate object's properties
-
What is gnugettext.pas unit? Is this Fast Script unit or Delphi unit?
-
I think you should modify FR's sources only
-
TfrxChartView doesn't support smoothing feature
-
Cross-tab doesn't support RTL reading view
-
You should assign query parameter with report variable in query parameter's dialog window
-
See the FRDemo for understanding the ideology of the FR Also you can see a flash demos: http://www.fast-report.com/en/products/fr4-flash-demo.html
-
If you want to print an image - use TfrxPictureView
-
Set TfrxGroupHeader.KeepTogether to True and use latest FR 4.11.xx
-
Use report variables to pass parameter's values to report
-
See a sample in C:\Program Files\FastReports\FastReport Studio\Examples\VisualC++\UserFunctionExample folder
-
Replace // necessary logic with your code in function TForm1.MyFunc(s: String ; i: Integer): Boolean;
-
1. No, you can't 2. What you mean? Properties or description of properties?
-
Try to use two-pass report or check subreport's MasterData.DataSet.RecordCount
-
Use in TfrxMemoView [SUM(IIF( < 6, , (-1) * ), MasterData1)]
-
Try to use TfrxGroupHeader(frxReport1.FindObject('GroupHeader1')).Condition:= '';
-
What is FQRListPedidos.QRGroup1.Expression value?
-
Try to complete chart series from script: wrote: 8.4 Chart completion from Script Let us examine the last chart completion from script. To perform this leave empty XValues and YValues fields in chart editor. In report script write the followin…
-
See FRDemo "Dialogs and script" section "Totals in group header" report
-
wrote: Look At the C code bellow in manual C code runs on first and second pass, but you need to run this code on first pass only
-
Use TfrxOverlay band or ask your question in FR Studio forum
-
Yes, it's possible Try to print pages 1 - (n-1) on first printer and page n on second printer in TfrxReport.OnPrintReport event
-
Try to use TfrxOverlay band or such code (for TfrxMemoView) procedure TForm1.frxReport1EndDoc(Sender: TObject); var p: TfrxReportPage;     m: TfrxMemoView;     i: integer; begin     frxReport1.Preview.Lock;     for i := 0 to frxRe…
-
Try to use TfrxMemoView with expressions. See an User's manual for more info
-
if not Engine.FinalPass then This is correct code