AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
There is no detailed bugfix list, only new/changed items.
-
FRv3 works with BCBv5. However, there is no BCB packages for IBO in the current version. It will be added later, in 3.08.
-
Catch the TfrxReport.OnPrintReport event. It is called before actual printing.
-
See demo in the demos\clientserver\cgi
-
1) right-click on the form and choose "Tab Order..." menu item. 2) what you mean? Do you want to write custom editor for your (or FR3) component or what?
-
Send them to tz@fast-report.com. You'll get the FR3 Pro license for free.
-
Picture objects (especially jpegs) slows down the designer. There is no solution for this except not using big pictures.
-
No, you can't. FR is for Delphi/BCB only.
-
This is by design, it's not a bug!
-
USB printers does not support the dot-matrix commands. Such printers are windows-only and can't work in DOS mode.
-
There is no attachments here. You can send it to tz@fast-report.com.
-
Please send the demo to the tz@fats-report.com, I will take a look.
-
Use the OnBeforePrint event and Engine.NewPage call. Read the user manual, pages 117-120.
-
Probably your HP printer does not support the dot-matrix mode. It may be if this pronter is windows-only.
-
1) sometimes recompile.exe won't work. I don't know the reason. 2) FR does not know the procedure name because a script was compiled. 3) use the F4 key.
-
Actually you can compile trial version for any TeeChart version. Follow the instructions in the teechart.txt and install.txt files.
-
I've tried it 5 minutes ago in the demos\main demo, it works well (both in 100% and 75% zoom).
-
Read the description of this function in the Delphi help system.
-
You should clear the Report.DataSet property too. If you use band.dataset, you should leave report.dataset and page.dataset properties empty.
-
frxReport1.DataSets.Clear; frxReport1.DataSets.Add(frxDBDataSet1); frxReport1.DesignReport;
-
Try 3.07, I have changed something.
-
Probably the problem was with vertical splitter position in the object inspector window.
-
Correct the frxDMPExport.pas file: procedure TfrxDotMatrixExport.SpoolFile(const FileName: String); const  BUF_SIZE = 1024; var  f: TFileStream;  buf: String;  l: longint; begin  if Report.ReportOptions.Name <> '' then   frxPrint…
-
kaju74 wrote: If I use the following code: [Trim( + )] How do I insert a space between the both db-var's?? Some like this, didn't work: [Trim( + " " + )] Correct is [Trim( + ' ' + )]
-
Something like this: void __fastcall Tshet_faktura::frxReport1BeforePrint( TfrxReportComponent *c) { TfrxCrossView* Cross; AnsiString s=c->ClassName(); if(s == "TfrxCrossView") { Cross = (TfrxCrossView*)c; for (int i = 1 ;i<=16;…
-
Sorry, RichText is completely rendered by Windows. I can't fix anything here.
-
Please send an example (screenshot) to the tz@fast-report.com
-
No, end-user queries/table should be on the dialog page.
-
Much harder that in FR2.x...
-
Just select the Page and set its DataSet property to nil (empty).