gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 603
- Last Active
- Roles
- Members, FR Team
Comments
-
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\"";
-
wrote: Problem with MasterData in PageFooter still remains. Try to store value from MasterData in variable in MasterData.OnAfterPrint event and print this variable on PageFooter
-
Try to click on splitter at the bottom of code page
-
Try to use child band for TfrxPageHeader and set child's visiblity in script
-
You may get parameters from cmd in your Delphi's program and then set report's variables in TfrxReport.OnGetValue event
-
You may change TfrxReport.ScriptText property
-
You may use user function. In user functions you may change sort order of your dataset or format your disk if you want
-
Try Var FReport : TfrxReport; Begin conv := TConverterQr2Fr.Create; FReport := TfrxReport.Create(nil); conv.Source := fmPrintCommande.QrCommande; conv.Target := FReport; conv.Convert; FReport.SaveToFile('c:\report\commande.fr3'); FReport.Free; conv.…
-
Try to use frxQuery.ExecSQL command