gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Hello, Please attach your report template (fr3)
-
Try to use TfrxPreview If you use TfrxPreview you must create your own toolbar and add all the buttons and then hook them to the appropriate functions This functions should be called by each button: frxPreview1.Print; frxPreview1.LoadFromFile; frx…
-
Try to export preview pages: Report.PreviewPages.Export
-
Hello, What build of FR do you use? Try to use latest build 4.10.x
-
Try procedure TForm1.ButtonClick(Sender: TObject); begin     ShowMessage('My Button pressed'); end; procedure TForm1.frxReport1Preview(Sender: TObject); var   Button: TSpeedButton; begin   // add new button   Button := TSpeedButton.Cre…
-
Hello, Try this report template: http://rapidshare.com/files/422321706/test.fr3 - all works OK for me. What result did you get?
-
See changes.txt for FR 4.10: wrote: + added option EmbedProt which allows to disable embedding fonts into an encrypted PDF file
-
Try to add riched20.dll in WINE
-
Create support ticket and ask developers to add this feature in FR
-
1. No. Embedded designer requires correct code and not good solution (IMHO). Better to use modal FR Designer 2. No, if you build project without runtime packages 3. Select the object with the variable and call its context menu. The format editor i…
-
You can use CopyName# report variable in FR4
-
Try to use: Chart1.AddSeries(csLine); with Chart1.SeriesData[0] do       begin         DataType := dtDBData;         DataSet := ADOQuery1;                                           …
-
Use in Delphi: frxReport1.Variables.Variables['FileName'] := '''' + 'C:\test.bmp' + ''''; in script: procedure Picture1OnPreviewClick(Sender: TfrxView; Button: TMouseButton; Shift: Integer; var Modified: Boolean); begin     TfrxPictureView…
-
No. I see English, Russian and German user's manuals only
-
nash Did you add frxCrypt unit in uses list of your unit?
-
wrote: I can't convert FR2 to FR4. Is there's any other alternative? Did you try to use fr2xto30.pas for converting?
-
See a small demo project here: http://rapidshare.com/files/421592412/DrillDown_Dialogs.zip
-
Also try this converter: http://laalaa.googlecode.com/files/Word-an...-FastReport.rar
-
Print your document to xps format and try to convert xps to fr3 using this converter: http://fast-report.com/pbc_download/xps_converter.zip
-
Try to use latest build of FR - 4.9.111 Set TfrxMemoView.RTLReading := True;
-
See a sample in C:\Program Files\FastReports\FastReport 4\Demos\EmbedDesigner folder
-
wrote: or by using some other utility? Yes. Use FR Trial for converting
-
Did you install all updates for D2010?
-
See FRDemo "Other features" section "Preview outline" report
-
ivan8888 Can you upload your frf file to rapidshare.com?
-
See a demo in C:\Program Files\FastReports\FastReport 4\Demos\EmbedDesigner folder
-
manoj_kogata Try in Delphi's code frxGlobalVariables['CopyName0'] := '';Â Â Â Â Â Â Â Â Â Â Â Â // copy viewed in the preview frxGlobalVariables['CopyName1'] := 'First copy';Â Â // 1st printed/exported copy frxGlobalVariables['CopyName2'] := 'Sec…
-
Try in Delphi's code frxGlobalVariables['CopyName0'] := '';Â Â Â Â Â Â Â Â Â Â Â Â // copy viewed in the preview frxGlobalVariables['CopyName1'] := 'First copy';Â Â // 1st printed/exported copy frxGlobalVariables['CopyName2'] := 'Second copy';Â Â …
-
procedure TForm1.Button1Click(Sender: TObject); var   l: TList;   i: Integer;   c: TfrxComponent; begin   Preview.Lock;   l := Report.AllObjects;   for i := 0 to l.Count - 1 do   begin     c := l[i];     if (c is TfrxGroupHeade…
-
Try frxReport1->Variables->Variables["My Variable"] = "\"test\"";