gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 565
- Last Active
- Roles
- Members, FR Team
Comments
-
You can delete preview page after report's preparing
-
What page do you want to remove: preview page or page from report template?
-
wrote: if i want to set the Line Spacing to what the same for memo : TfrxMemoView (frxReport1.FindObject ('Memo1')). LineSpacing: = 100; Yes. Why you can't to try your code?
-
See a small demo project in attach
-
I think TClientdataset doesn't use dbxconnections.ini Attach small demo project with problem here Without test project your messages are useless
-
Use for example TfrxMemoView(frxReport1.FindObject('Memo1')).Left := 100;
-
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?