gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
wrote: After removing frxADOComponent from Datamodule, and putting back ADOConnection into 1.fr3, all works fine (even fire all three report in the same time in timer). Did you use separate frxADOComponent for each thread?
-
First, attach small test application based on employee.gdb and standart Delphi components to show your primary problem. At this moment I see only words
-
wrote: P.S. in GPi example there are lot of other errors : ) Try to modify my code: procedure TPrepareThread.OnClose(Sender: TObject); begin   if FReport <> nil then   begin     FReport.OnClosePreview := nil;  //add     if…
-
See a demo based on TfrxADOComponents and D7 in attach
-
You can use TfrxDMPCommand object in DMP reports
-
See a Programmer's manual 1.12 Creating a report form from code chapter: wrote: var DataPage: TfrxDataPage; Page: TfrxReportPage; Band: TfrxBand; DataBand: TfrxMasterData; Memo: TfrxMemoView; { clear a report } frxReport1.Clear; { add a …
-
But for your report template you will always get 'sex1' and 'sex2' values for last record Create report without sorting of records (use A4 page) and then resort preview pages: http://www.fast-report.com/en/forum/?p=/discussion/7849
-
Can you attach data for report's preparing (in dbf, xls or MS Access mdb format)?
-
All works OK for me
-
Attach small test project with problem
-
Try uses frxRich, frxRichEditor, frxDesgn; procedure TForm1.frxReport1ClickObject(Sender: TfrxView;   Button: TMouseButton; Shift: TShiftState; var Modified: Boolean); begin   if Sender is TfrxRichView then     with TfrxRichEditorForm.Create…
-
wrote: and saw that problem occurs in "TO_NUMBER" function What field type in "TO_NUMBER" function? Is regional settings same?
-
Check Oracle provider's version on both machines
-
Add ProcessMessages function in FS: procedure TForm1.FormCreate(Sender: TObject); begin     frxReport1.AddFunction('function ProcessMessages');     frxReport1.ShowReport(); end; function TForm1.frxReport1UserFunction(const MethodName: str…
-
See previous Mick.pl post - create additional query and use subreport
-
Objects??? coordinates and sizes are set in pixels, page dimensions - in mm. Since the ?«Left,?» ?«Top,?» ?«Width,?» and ?«Height?» properties of all objects have the ?«Extended?» type, you can point out non-integer values. The following constants…
-
Hello, You can found user's, programmer's, developer's and enterprise manual here: http://www.fast-report.com/en/download/fas...4-download.html and some info here: http://www.reportingfor.info/en/news.php?cat.2 Also you can see FRDe…
-
Try to fill result TRichEdit with your code from your first post and then copy result TRichEdit with TMemoryStream
-
Try to resort preview pages after preparing of report. Something like: var i, j: integer;     page : TfrxReportPage; begin     frxReport1.PrepareReport();     j := frxReport1.PreviewPages.Count div 2;     page := TfrxReportPag…
-
Sorry, but TfrxOLEView(frxReport1.FindObject('OLE1')).OleContainer.CreateObjectFromFile('C:\test.pdf', False); code works OK for me
-
I think aggregate function usage doesn't decrease a performance. Try to store query's result in temporale table and use this table as report's dataset
-
Try to use TfrxUserDataset
-
I tried with FR 4.10.7 - all works OK
-
wrote: Please advise what I am doing wrong. You don't attached report template (fr3) and saved preview pages (fp3)
-
Use for Pascal script: Â Â Â Â [IIF(=1,'AAAAA','BBBBBB')]
-
Try to use if Aformat='05' then memo3.HAlign:=haCenter else memo3.HAlign:=haLeft;
-
Did you try to use latest FR 4.10.10?
-
Try to use MasterData1.Visible := <> 0; in MasterData1.OnBeforePrint event
-
Use in Delphi's code var BMP: TBitmap; begin     BMP:=TBitmap.Create;     BMP.LoadFromFile('C:\Test.bmp');     frxReport1.Script.Variables['pBMP']:=integer(BMP);     frxReport1.ShowReport();     BMP.Free; end; in report's…
-
Set TfrxCheckBoxView.Expression property to = 'M'