gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
See a Developer's manual "Custom Report Components Writing" chapter for more info
-
int j = 1; int i; i = VarArrayGet(Params, &j, 0); P.S. C++ so beautiful: it makes simple things complicated
-
wrote: If there is no way to add rtf formatted text in code Try to use TfrxRichView.Richedit.Lines.LoadFromStream
-
Use frxReport1->AddFunction("function ReturnAnInt: integer", "My Functions", "converts integer to date time string");
-
wrote: Is that TPicture.Bitmap property available only in compiler (Delphi, C++, otthers)? Delphi and C++ only, no others
-
wrote: I hope someone else here will tell you how to make C++ language a default one for your Designer and compiler (I don't know). TfrxDesigner.DefaultScriptLanguage
-
wrote: I am assuming that for your example to work I would first need to save all of the different pictures to file (literally thousands in a lot of cases) each with a unique name. I also assume that within the event I can pick up on a field withi…
-
Type begin end. in code window
-
wrote: I am using the version bundled with Builder XE3 Pro FR Embarcadero edition doesn't support script So, you should use TfrxPictureView.FileLink property. Set it to [FileName] and use TfrxReport.OnGet Value event: procedure TForm1.frxRep…
-
Use non-stretched band for fixed row height
-
wrote: How do you define the virtual rows ? Use for example MasterData1.RowCount = 1 Also you can assign TfrxReport.Dataset with your dataset and place memos without bands on Page1, Page2
-
wrote: but as I havent got the pro version What edition of FR do you use?
-
wrote: The db does'nt contain an image, it contains a reference that I use to create an image - so basically as each record is processed by fast report I will need some logic to copy (and modify - but that is in hand) the image from one location t…
-
Fast Script isn't a Delphi. FastScript doesn't support sets, so you should use if value = 1 then Memo.Font.Style := fsBold + fsItalic;
-
wrote: Scaling did not work See attach
-
If you can use Notepad - try to correct dclfrxIBO7.DPK and frxIBO7.DPK. Just replace some numbers (IBO and Delphi version numbers)
-
You should set all TfrxReport.Preview to nil before frxReport1.Preview := frxPreview1; and others
-
Use scale printing mode. You can select it in print window
-
TfrxDBDataSet - for DB data, TfrxUserDataSet - for non-DB data
-
Try Child2.Visible := Trim() <> '' or Child2.Visible := Trim(Report.Calc(lblCustomerName.text)) <> ''
-
Try FRDemo. Do you get same behavior?
-
wrote: - it's slow because the display of the windows 7 computer is a 1650 x 1080 resolution and the preview in scale 100% apears in 2 pages on the screen width. (on the XP computer the displays is lower so we see only one page on the screen in s…
-
Use TfrxPreview.Zoom
-
make one .frc file that contains all resources. this file can be loaded from your application by this code: uses frxRes; frxResources.LoadFromFile('english.frc');
-
It seems you use XE2 or XE3 and install FR Embarcadero Edition first Remove FR Embarcadero Edition design-time packages from IDE and install FR Standart
-
wrote: I also already tried but same result as above, the datas are displayed in the other way, but still in anti-clockwise. see attach wrote: How is it possible to display the text in the legend on multiline ? (in case of the text is v…
-
Attach small demo report template with incorrect EAN13 barcode
-
Set PieValues.Order to loDescending
-
You can use TfrxBarCodeView
-
wrote: if you are not, add a 0 height page header so you will have the event available. Also you can use empty page header