gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
FR's code editor doesn't have such feature
-
Try to download fmx2_2_10_d23p.exe wrote: We are not quite there yet - the download link for fmx2_2_9_d23p.exe appears to be broken. Sources included in the FR FMX, so you can use any other installer and recompile.exe
-
Go to menu View-Options and uncheck Show band captions option, then set MasterData top position to 0
-
Use in the TfrxMemoView something like: [IIF( = 'Percent', / 100 * , * )]
-
wrote: So that's a dozen or more packages to be located and manually added? Yes, you may select all dcl*23.bpl packages from LibD23 folder at the same time and add it to IDE wrote: But such a procedure takes time Yes, it takes 3-5 mi…
-
Installer for RAD Studio 10 Seattle available now in the customer panel
-
tampasounds If you have FR Enterprise, you can download sources of FR 5.3.14, install it and build all FR's packages by recompile.exe Then add path to LibD23 folder to Library Path and add all dcl*23.bpl packages from LibD23 folder in the IDE (men…