gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
You can resort preview pages after preparing of report: var i, j: integer;     page : TfrxReportPage; begin     frxReport1.PrepareReport();     j := frxReport1.PreviewPages.Count div 2;     page := TfrxReportPage.Create(nil);   …
-
Try procedure TForm1.frxReport1PrintReport(Sender: TObject); var i, Copies: integer;     ShowDialog: Boolean; begin     if frxReport1.PrintOptions.Copies > 1 then       begin         Copies := frxReport1.PrintOptions.Copi…
-
// Using: Â Â conv := TConverterQr2Fr.Create; Â Â conv.Source := QuickRep1; Â Â conv.Target := FReport; Â Â conv.Convert; Â Â FReport.SaveToFile('converted_fromQR.fr3'); wrote: What is converted the bands, database-interface, scripts an…
-
You may store variable in script variable and print this variable on group footer var MyLine: integer;   procedure GroupHeader1OnBeforePrint(Sender: TfrxComponent); begin     MyLine := ;                           …
-
See a test report template in attach
-
Try to use: Chart1.SeriesData[0].Source4 := 'clGreen;clRed';
-
Attach your report template (fr3)
-
Try to use (for Adobe Reader for example ) TfrxOLEView(frxReport1.FindObject('OLE1')).OleContainer.CreateObjectFromFile('C:\test.pdf', False);
-
Try to comment Application.MainFormOnTaskbar := True; in Project1.dpr: Application.Initialize; //Â Â Application.MainFormOnTaskbar := True; Â Â Application.CreateForm(TForm1, Form1); Â Â Application.Run;
-
Did you try to print a document with 3 pages from MS Word? What result did you get? What version of FR do you use?
-
Did you unblock FR4.6.UserManual-en.chm?
-
Did you SMTP server support PLAIN authentification?
-
You may set checkbox's "Checked" property to False or set Expression property
-
Try Chart1.Series[0].SeriesColor := clBlue; Chart1.Series[1].SeriesColor := clGreen;
-
Add empty TfrxReportPage (Page2) in report and use in script: procedure Page1OnAfterPrint(Sender: TfrxComponent); begin     Page2.Visible := ( mod 2) = 1;  end;
-
Yes. You must use correct 'Arial' font's name
-
Try report template from attach. What result do you get?
-
Attach your report template (fr3)
-
procedure TForm1.frxUserDataSet1NewGetValue(Sender: TObject; const VarName: String; var Value: Variant); begin end; procedure TForm1.frxUserDataSet1GetValue(const VarName: String; var Value: Variant); begin end;
-
Did you use this code before preparing of report?
-
Try procedure TForm1.frxReport1ClickObject(Sender: TfrxView;   Button: TMouseButton; Shift: TShiftState; var Modified: Boolean); begin     if (Sender is TfrxMemoView) and (Sender.Name = 'Memo1') then       ShowMessage(Trim(TfrxMemoView…
-
Use [EncodeDate(StrToInt(Copy(, 1, 4)), StrToInt(Copy(, 6, 2)), StrToInt(Copy(, 9, 2)))]
-
You may use FR Trial version for report's converting
-
What OS do you use? I try with FR 4.10.1 on Win7 - preview window minimize without problem (only preview window, not all application)
-
See an User's manual: wrote: It should be noted, that the splitting algorithm is not perfect and quality of the output report may not be as expected. You should use this option very carefully in cases when objects on the split band are grouped…
-
What form do you want to view? Attach a simple demo project with problem
-
See a test report template in attach. All works OK. Can you attach report template with problem?
-
Try to change resources in frxrcDesgn.xml and change language with recompile.exe
-
See Functions tab in Data Tree
-
I think Win7 fonts have bigger size than XP fonts