
-=Den=-
-=Den=-
About
- Username
- -=Den=-
- Joined
- Visits
- 7
- Last Active
- Roles
- FR Team
Comments
-
I have this components if you want i can send it to you .
-
I created a little example and attached it to your ticket.
-
i know solution: 1. Copy ComCtrls.pas form delphi to project dir. 2. In implementation section add: const ComCtlVersionIE6 = $00060000; var IsOnCheckDownNeed: Boolean; 3. In initialization section add: IsOnCheckDownNeed := GetComCtlVers…
-
You can change band position change Engine.CurX and Engine.CurY in OnBeforePrint event(in script code).
-
Did you try last version ?
-
We added new property IfrxReportPage.PaperHeight and IfrxReportPage.PaperWidth. You can find it in new built(i changed VB6_Dynamic_report_Demo example to demonstrate how this work).
-
wrote: I am currently using this formual (-1)X mutiplyling the number by -1 Now you use correct method
-
NOT is a boolean operation. signed integer -2 147 483 648...+2 147 483 647 in hex (negative) 0XFFFFFFFF80000000 (-2 147 483 648) ... 0XFFFFFFFFFFFFFFFF( -1) positive 0X0000000000000000(0) .... 0X0000000080000000(+2 147 483 647) for examp…
-
I not understood your problem.
-
from delphi : Report.OnBeforePrint event: if Sender.Name = 'Picture name' then TfrxPictureView(Sender).Picture.Bitmap.Assign(Bitmap);
-
Try write [SalesTotals] in memo.
-
What exactly doesn't work ?
-
wrote: The TfrxPDFExport support the unicode export?? No, is not.
-
Yes, you can. LoadReportFromFile() FindObject("Object name") ' where "Object name" is name of page in your report Create new object (CreateReportObjectEx), in parent pass previous find object.
-
To set report variables fron script code use Set('Variable name',10);
-
Set MasterData.PrintIfDetailEmpty propert to true.
-
fsGlobalUnit doesn't use anymore. Try this code: type TFunctions = class(TfsRTTIModule) public constructor Create(AScript: TfsScript); override; end; { TFunctions } constructor TFunctions.Create(AScript: TfsScript); begin inher…
-
I don't know such companyes
-
No yet. How to develop reports you can find in documentation http://www.fast-report.com/en/documentatio...3user/index.htm
-
Your registration e-mail doesn't work. Can you give me your e-mail?
-
The example. It is not exact calculation, because report doesn't know how many page contain in prepared report. This example demonstrate how you can create your own progress window. I can't attach example here and i send it to your e-mail.
-
Standard Progress bar(OldStyle) show oly window with page numbers. If you wnat show progress bar from 0 to 100% then you must create your own progress window. I create example tommorow and attach it here.
-
Did you try set DetailData.PrintIfDetailEnpty to true ?
-
You want show all recods in Master2? Master1: datasource1 1 record Detail1 Detail2 Detail3 Master2: datasource1 1 record Master2: datasource1 2 record Master2: datasource1 3 record Master2: datasource1 ... record Master2: datasource1…
-
FAQ http://fast-report.com/en/faq/detail.php?BID=41#1.1
-
Use Engine.ShowBand(Footer) in script code. DetailData1OnAfterPrint: if DetailData2.DataSet.Count = 0 then Engine.ShowBand(Footer)
-
Yes, it's possible. In directory Res\(Your_Language) launch mk.bat. to make the multi-languages the resource, it is necessary to launch mkall.bat - is got file YOUR_LANGUAGE.frc, which it is necessary to load so: uses frxRes; frxResources.LoadFr…
-
frxReport1->PreviewForm->Hide(); frxReport1->PreviewForm->Close();
-
You want create your own progress or use standard?