gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 563
- Last Active
- Roles
- Members, FR Team
Comments
-
wrote: I dont understand how to ignore Just press No button wrote: how that could help when files are missing. It will remove references to uninstalled bpls from IDE
-
Attach your report template (fr3) here
-
Install BDE in the DX, compile frxBDE23.dpk and install dclfrxBDE23.dpk packages
-
See a demo project in the attach. Works OK. Check script language in the your report
-
Yes, it possible. If you have FR Standart and higher. FR Embarcadero Edition which included in the Delphi 10 Seattle doesn't supports internal datasets. You mai assign BDE datasets with TfrxDBDataset only
-
Engine.NewColumn works for multi-column page only Try to set Engine.CurX instead of Engine.NewColumn;
-
If one record fits one page only - assign TfrxReport dataset with your MasterData dataset, clear MasterData dataset and set MasterData.RowCount to 1
-
See attach
-
Use frxReport1->Variables->Variables["Var"] = "\"Test\""; if TfrxReport->ScriptLanguage = C++Script
-
wrote: I want to send fixed values from C++Builder to FastReports, so I'm sending values as parameters and trying to show to in the report using a variable, but it fails and I think that there is a problem with the variable that I created inside t…
-
Move right set of the memos to subreport, place each pair of memos on the stretched band, set the stretchmode to smActualHeight Set TfrxSubReport.PrintOnParent to True
-
Move right set of the memos to subreport, place each pair of memos on the stretched band, set the stretchmode to smActualHeight Set TfrxSubReport.PrintOnParent to True
-
Attach your report template (fr3) here
-
Try to use TfrxMasterData band with RowCount = 1 instead of TfrxHeader band
-
See attach
-
Try to use converter from attach
-
Also you can add text in TfrxReport.OnEndDoc event procedure TForm1.frxReport1EndDoc(Sender: TObject); var p: TfrxReportPage;     m: TfrxMemoView;     i: integer; begin     frxReport1.Preview.Lock;     for i := 0 to frxReport1.Prev…
-
Bill E wrote: » What is the difference between Release and Current? See changes.txt of the current version
-
procedure TForm1.frxReport1BeforePrint(Sender: TfrxReportComponent); var r: TfrxRect;     b: TfrxBarcodeView; begin   if Sender is TfrxBarcodeView then     begin       b := TfrxBarcodeView(Sender);         if b.Align = baCent…
-
Any version is not bug free. For my experience "release" version have no difference with "current". So you should try to install latest FR and test it Look at the release FR 5.3 bugfix list wrote: 5.3.15 - Changed default value of CodePage for…
-
wrote: Nothing can be done? Yes
-
wrote: Is there any way to fix it? With FR - no. Try to use PDF printer
-
See a Developer's manual "Custom function writing" chapter
-
FR supports Datamatrix only
-
Uninstall FR, remove all FR's files and folders (see system and hidden folders too) and then install FR again
-
Export of TfrxRichView and TfrxChartView will not change
-
Modify frxOfficeOpen.pas: uses Windows; function RGBSwap(c: TColor): TColor; var rgb: array[0..2] of Byte; i: Integer; begin if c < 0 then //add c := GetSysColor(c and $000000FF); //add for i := 0 to 2 do begin rgb[i] := c and $ff; c := c shr 8;…
-
Try to use latest FR 5.3.14
-
See a demo in the attach
-
Quality of TfrxPictureView will be increased in the FR 5.3.15