gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
Try to use: procedure Cross1OnPrintCell(Memo: TfrxMemoView; RowIndex, ColumnIndex, CellIndex: Integer; RowValues, ColumnValues, Value: Variant); begin     Memo.TagStr := IntToStr(RowIndex) + '|' + IntToStr(ColumnIndex);            …
-
But dbEexpress need dbxconnections.ini file Did you set permissions for your users for \\10.10.10.4\lqs\ folder?
-
You can recompile FR packages, not FR units (with recompile.exe or manual recompile) If you need recompile it (change language, TeeChart version) wrote: III. Recompiling FastReport Basic Edition and Standard Edition packages Perform the foll…
-
See a Programmer's manual: 1.12 Creating a report form from code As a rule, you will create most reports using the designer. Nevertheless, in some cases (for example, when the report???s form is unknown) it is necessary to create a report manually, …
-
1. Uninstall FR 2. Install FR for D2006 3. Store LibD10 folder 4. Uninstall FR 5. Install FR for D2010 6. Store LibD14 folder 7. Uninstall FR 8. Install FR for XE 9. Restore LibD10 folder 10. Restore LibD14 folder 11. Recompile packages fo…
-
Attach small demo project with problem here
-
wrote: exactly, so why i have that message error ? But in your first message you wrote: uses 'c:\source.pas'; procedure Memo80OnAfterData(Sender: TfrxComponent); begin   Memo80.Text := ExtractxMonthFromDate(Memo80.Value, True, True); end; …
-
Try to comment {interface function ReplaceIfBlanc(ch, t : char) : string; function ExtractxMonthFromDate(TD : TDateTime; Mois_Texte, MAJUSCULE : boolean): string; implementation}
-
Do you use Delphi/BCB?
-
No. 4.11.6
-
Try to use: procedure Cross1OnBeforePrint(Sender: TfrxComponent); begin     Cross1Column0.Rotation := 90;                                    end;
-
Use in Delphi's code: TfrxADOQuery(frxReport1.FindObject('ADOQuery1')).SQL.Text := ...
-
Try to use two-pass report: on first pass store sum in variable, on second - show variable's value where you need
-
wrote: Thanks for your answer, You tried to print on 2 separate occasions? I mean not 2 copies, but do 2 times click on print button, or 2 calls to the report. Yes. I did this
-
I opened your Test1.fr3 in FRDemo and EmbeddedDesigner demo (ver 4.11.2) without any problem wrote: lso try to create one report with password (compiled version 4.10) then open it with new version and see if works. Did you add TfrxCrypt obj…
-
I tried your compiled exe - all works OK. Can you try to print with another printer?
-
Attach your "old" report template
-
Attach your report template (fr3)
-
I compiled FRDemo with FR 4.11.2 and don't get such error
-
You may set column width in TfrxCrossView.OnCalcWidth event
-
Try to use frxReport1->Variables->Variables["MyPageNumber"] = MyPageNumber; Report1->PrepareReport(); MyPageNumber = MyPageNumber + frxReport1->PreviewPages->Count; frxReport2->Variables->Variables["MyPageNumber"] = MyPageNumber…
-
Attach small demo project with problem
-
Hello, can you try to print on other PC. Did you get same result?
-
Try to type in google.com: Unable to open: mk:@MSITStore: And see here: http://want2knw.wordpress.com/2007/04/23/w...torecwinnthelp/
-
Attach a screenshot of corrupted CHM file here
-
Use for example uses frxClass, frxPreview, frxPreviewPages, frxRes; type TForm1 = class(TForm) Â Â frxReport1: TfrxReport; Â Â procedure frxReport1Preview(Sender: TObject); Â Â procedure NewOnClick(Sender: TObject); end; var Form1: TForm1; …
-
Ask this question in FR.Net forum
-
I try with FR 4.10.16 - all works OK
-
You must prevent overlapping of objects for better perfomance
-
Try to use FR.Net