
-=Den=-
-=Den=-
About
- Username
- -=Den=-
- Joined
- Visits
- 7
- Last Active
- Roles
- FR Team
Comments
-
Set memo.RTLReading to false.
-
Try so: uses 'd:\delphi\project\MyFunction.pas'; .. .. .. in MyFunction.pas function MyFunction(x:integer):integer; begin .... end; begin end.
-
Use FastScript from FastReport package.
-
Try so: mmResult.Text := FormatFloat('##.##',st3);
-
use recompile.exe utility.
-
Try a last version in it fixed many bugs.
-
Win 9x do not support unicode.
-
Try TMemoryStream.
-
In script code (Cross1OnCalcWidth - Event): procedure Cross1OnCalcWidth(ColumnIndex: Integer; ColumnValues: Variant; var Width: Extended); begin  if ColumnIndex = 1 then  Width:= 100  else  Width:=150;   end;
-
See this topic : http://www.fast-report.com/en/forum/?p=/discussion/2865
-
Use the script (in onBeforePrint Events).
-
for FR3 : uses frx2xto30; frxReport1.LoadFromFile('report.frf');//open fr2 file //if you want save in fr3 file frxReport1.SaveToFile('report.fr3'); //if you have problem  in frx2xto30 (password convert) write to support
-
I not understand, can explain me what exactly you need?
-
Save report to file and uses frx2xto30(in FR3 application). After this open report and save it in fr3 file.
-
Install update 2 for Delphi 6.
-
You need add user functions for design time mode in FR source code.
-
((TfrxMemoView*)frxReport1->FindObject("frxMemo5"))->Text = "Hello World";
-
Ok, i am attach it is in support(ticket).
-
Yes
-
http://fast-report.com/en/support/
-
Strange, but beside me this method works orderly (FR 3.19.2).
-
There is property "SQL" in TfrxDEXQuery. Try to do with the help of SQL request.
-
Has Done so and all work. You certain that , in request there is all field procedure Cross1OnBeforePrint(Sender: TfrxComponent); begin ADOQuery1.First; while not ADOQuery1.Eof do begin Cross1.AddValue([ADOQuery1.Fields[0].Value], [ADOQuery1.Fields[…
-
Maybe it is problem in Delphi 2005.
-
I working in Delphi 7 and shall create the function so: In Delphi: procedure TForm1.Button1Click(Sender: TObject); begin frxReport1.AddFunction('function MyFun(x:String):String','User Function',''); frxReport1.DesignReport; end; function TForm1…
-
You will send but parameter type String? Try with other parameter.
-
This message nor as is not connected with FastReport. Try to enlarge importance of the parameter BLOBS TO CACHE Beside alias(BDE)
-
Maximum height of Band = PaperHeight - TopMargin - BottomMargin
-
The approximite code: uses printers,.... .... .... .... var printer:TPrinter; index:integer; begin printer:= TPrinter.Create; printer.Printers; //ListBox1.Items:=printer.Printers;//if it is necessary possible to take list a printer index:=printer.Pr…
-
In script code: procedure Cross1OnPrintColumnHeader(Memo: TfrxMemoView; HeaderIndexes, HeaderValues, Value: Variant); begin  Memo.Font.color:=clred; end