gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
If you use FR for xHarbour - ask Sergey Spirin
-
See attach
-
What edition of FR do you use?
-
Use 4.12.1
-
You can't to open designer on a web application
-
Try to use in script: Â Â Â Â Report.LoadFromFile(filename); Â Â Â Â Report.ShowReport; But better to use Delphi's code. See InteractiveReport demo in FR's Demos folder
-
Set TfrxGroupHeader.StartNewPage to True
-
Try to set TfrxOverlay.PrintOnTop to True
-
var   AIndex : Integer;   hDevMode: THandle;   Device, Driver, Port: array[0..1024] of Char;   DeviceMode: PDevMode; begin   if not PrintDialog1.Execute then Exit;   frxReport1.PrepareReport(True);   frxreport1.PrintOptions.ShowDial…
-
FR doesn't support semitransparent feature, but you can print overlay band on back See attach
-
Try to convert your document to rtf and then load it to TfrxRichView
-
Is mDesc memo exists in your report?
-
Try to use TfrxReport.OnPrintPage event
-
Do you have report with 2 TfrxReportPage or 2 prepared pages?
-
FR doesn't support script inheritance at this moment
-
Use TfrxPreview.Find
-
Use FR 4.12 [IIF(1=1,'yes','no')] works OK with FR 4.12
-
See a small demo project based on ADO components in attach
-
See a Developer's manual "1.12 Creating a report form from code" chapter
-
Use link without space http://www.fast-report.com/pbc_download/LibD16.zip
-
Use Report.NewColumn
-
Try to use latest FR 4.12.1
-
wrote: It would also be nice if the complete list was surrounded by a rectangle because I may have to produce more than one group of checkboxes like this. Attach a sample what you want to get
-
Can you attach small demo project based on standart Delphi's components?
-
Try var DS: TfrxDataSet; begin     DS:=Report.GetDataset('Items');     DS.First;     while not DS.Eof do            begin                  ShowMessage(DS.Value('Part Name'));         DS.NEXT;   …
-
See modified report from FRDemo in attach
-
Try [IIF(( >= 0) and ( <= 9), '0' + IntToStr(<YourDataSetName."YourFieldName">), )]
-
wrote: Like in this picture imagine each text would be a memo Yes wrote: and each row a masterdata No. Only one masterdata See also PrintTable and PrintStringGrid demos in FR's DEMOS folder
-
Try to set Report1.EngineOptions.IgnoreDevByZero := True
-
Try to use frxReport1.PrepareReport; frxReport2.PrepareReport; frxReport1.PreviewPages.AddFrom(frxReport2); frxReport1.ShowPreparedReport;