
GRFrones
GRFrones
About
- Username
- GRFrones
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Just put one or more DB components (TfrxADOComponents, TFrxBDEComponents, etc.) on your form and you will see the DB components when you are editing a "Dialog Page"... See FastReport's Demos... There is a demo that demonstrates how to use the Fas…
-
When you want to clear, try that: frxPreview.Report := Nil; And when you load a new report: frxPreview.Report := frxReport; Btw, I think the access violation you got is because you destroied frxReport, and later, you tried to access it witho…
-
Try to create a TBitmap and then, load the picture to it... So you can use assign to the TBitmap... regards.
-
You can export your report to HTML, PDF or whatever, and then, send by e-mail... I use Indy to send the e-mails and it works fine... Have you saw the developer's manual? I think it have what you are looking for... http://www.fast-report.com/en/d…
-
hmmmmm... Ok... Thank you, Alex! regards.
-
I think you'll need to create a own preview form (using the TFrxPreview)... Or you can edit FastReport's source... But whenever you update your FastReports, you'll need to remake the source modifications... Regards.
-
I couldn't too... I tried this code: Relatorio.PrepareReport; TXT := TfrxDotMatrixExport.Create( Self ); TXT.ShowDialog := True; TXT.Report := Relatorio; Relatorio.DotMatrixReport := True; Relatorio.ShowPreparedReport; The preview is ok, but w…
-
Hi... Here I am again... I recently installed the RTL update 3, and the size of the executable was exactly 384Kb (393,216 bytes)... Is it really wrong? Thank you very much! regars.
-
I couldn't understand very well, but it seems that you want to do something with the data before printing it... If I'm correct, explain better what you want to do, because it can be made with Script, or with function calls in FrxMemoView's... By …
-
I followed the steps, but the size is incorrectly... Clicking in my Help >> About, it shows Version 6.0 (Build 6.240) Update Pack 2... If there's something wrong, how can I correct? Can I uninstall and reinstall the Update packs? Thank y…
-
Hi! It is in a MasterData, and so, the only way to do is with Script or Functions... But, FreeReport haven't these features... See about FastReport 3.0... It's very good... regards.
-
Now it's working very well!!! Thank you, gordk... I stopped using the TfrxReport.AddFunction method and used fsGlobalUnit.AddMethod, only one time on the executable... Regards.
-
I'm adding the functions as many times as the report is generated, but I add the function to TfrxReport component that is Released of the memory after the report is printed... I don't need to add the function again (to another instance of TfrxRep…
-
By the way, where can I find this PascalScript you talked? regards.
-
If the page size is correctly seted, you can set the band to AllowSplit=True, and you will have no problem with page breaks... What you mean with "change Trys"? Modifying Report? Yes, you can using frxDesigner... regards.
-
You can create a user function and control the Try..Except throug Delphi... regards.
-
You tried to do using user functions (added to report)? regards.
-
You can send RecordCount of the Query through a variable too... regards.
-
Well... the error is apperaing sometimes... But I couldn't know what happens to it appears, but, going a little more on FastReport code, i saw the error is here: function TfrxReport.DoUserFunction(Instance: TObject; ClassType: TClass; Â const Metho…
-
I made a modification on FastReport code to try something... I get an error, so I returned everything back to original and compiled all projects... Now it's working well (I don't have any ideas of what happens)... regards.
-
I solved that problem... I wrote the code on Delphi... Now I wonder.... For what does FastReports have a Script if it's VERY hard to use a variable? regards.
-
Making some tests and looking for COPY function on FastScript source, I think I found a bug... Try to convert the string '0012' to variant and back to string... It will return '12'... Using the Copy function on FastScript (that converts to Varian…
-
One more thing: Var wI : Integer;   wAux : String; begin   wAux := ;   While Length( wAux ) < 12 Do     wAux := '0' + wAux;   MemoCli.Memo.Clear;   MemoCli.Memo.Add( 'A' );   For wI := 1 To StrToInt( Copy( wAux, 1,…
-
I didn't understand your question... To group, you should use a SQL Query... regards,
-
More details: I could add and use the function AnsiReplaceStr, but on the code I wrote, the error still happening... I make some tests, and the error appears to happens only with variables sent by Delphi or already existing on the Report.Variable…
-
Alex, I installed Delphi update pack 1 and 2, but it still don't works... A fragment of my code should help? regards.
-
You can use the same Memo, or then, set them to stretched = false... I don't see any other solutions in FreeReport...
-
Try to use the Newsgroup... I have no problem with the support here on the forum, but I use FastReport 3, and in this section, it appears to be slow...
-
You can't execute code in FastReport 2.x... Try to use FastReport 3... If you use FastReport 3, see the developer's manual on how to add own functions... regards.
-
Ok... I'll install it... Thank you very much! Regards, Gabriel Frones