gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
You can't print multiple pages with TfrxOLEView object. You may split your PDF to many PDFs with one page and use TfrxOLEView object for each PDF (page)
-
Can you show all your code? What class of FReport - TfrxReport?
-
You may set TfrxPDFExport->PageNumbers and export a range of pages
-
Uninstall FR, install again and remove frxpngimage.pas, frxpnglang.pas from LibD11 folder wrote: With 4.8 it all compiles successfully ;however with 4.9, I get the following error... delphi11 error: fqb110.dpk(45) Fatal: F1026 File not found:…
-
Try to place TfrxLineView on TfrxPageHeader band
-
I hope that the new version of the FR (FR5) will remain a standart interface