AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Change the frxCrossMatrix.pas: const CROSS_DIM_SIZE = 8;
-
Please read the "developer manual" about writing a custom components.
-
Could you send me FR3 and FP3 files? tz@fast-report.com
-
Use TfrxReport.OnPrintReport event. The name of the currently selected printer is in frxPrinters.Printer.Name.
-
I don't know, there is something wrong on your PC. In this case download the FR3 trial, install it and compile the demo from demos\main folder.
-
In the next week.
-
Read everything about "Script" (starting at page 100 of user manual).
-
Just checked it - works well for me.
-
FR2.53 demo from our site does not use BDE!
-
put the following text in the "Text" object: [Report.ReportOptions.Name] read the user manual about changing text objects.
-
No, you should use a variable instead of and handle it in the script.
-
Use band.OnBeforePrint: Band1.Visible := = somevalue
-
You should have BDE and "DBDEMOS" alias in order to run FR3 demo. Semms you haven't.
-
Looks like you have messed old and new FR3 files, or you have old files on the search path. Delete the FR3 manually (uninstall may leave some files, dcu for example), and install the FR3.04.
-
Send me a demo, I will check it. tz@fast-report.com
-
Wait for 3.05, it will out soon.
-
This may be due to a bug in the FR3.04. Change the frxClass.pas: function frxFindDataSet(DataSet: TfrxDataSet; const Name: String;  Owner: TComponent): TfrxDataSet; var  i: Integer;  ds: TfrxDataSet; begin  Result := DataSet;  if Name = ''…
-
First option just changes the current page settings. Report is not recalculated. It is normal.
-
You have two options in the bottom of "Margins" window: apply to current page or to all pages. When using last option, the report will be rebuilded.
-
Do not set the TfrxReport.DataSet to the same dataset as Page.DataSet or Band.DataSet.
-
Probably is Null in some cases, you should check it for Null.
-
Please change the frxRich.pas file: procedure TfrxRichView.DrawRich; var  Range: TFormatRange;  LogX, LogY: Integer;  EMFCanvas: TMetafileCanvas;  EMF: TMetafile; begin  EMF := nil;  EMFCanvas := nil;  FillChar(Range, SizeOf(TFormatR…
-
Sorry, I don't understand what is the problem.
-
unit mwMain; interface uses  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,  StdCtrls, CheckLst; type  TMainForm = class(TForm)   LanguageCB: TCheckListBox;   Label1: TLabel;   Button1: TButton;   …
-
Use the RES\multilang.exe wizard to generate multi-language resource file. It will create the frxMultiLang.pas unit with the following contents: unit frxMultiLang; interface procedure SetEnglishResources; procedure SetRussianResources; …
-
If you have a demo (that I can compile and test), you can send it to tz@fast-report.com
-
I also have this error. When I recompile frxIBO.dpk and dclfrxIBO.dpk packages and put the frxIBO.bpl to System folder, everything start working well.
-
You have downloaded wrong file, please go your user panel and download it again.
-
You can't switch the page visibility when the page is started. And you can't choose dymaically which page to print right now: FR will print all records on Page1, then all records on Page2, then report will be finished.
-
Correct is: procedure PageHeader1OnBeforePrint(Sender: TfrxComponent); begin Memo1.Memo.Text := '[IDNUM]'; or Memo1.Memo.Text := IntToStr(IDNUM); end;