Haegar
Haegar
About
- Username
- Haegar
- Joined
- Visits
- 24
- Last Active
- Roles
- Members
Comments
-
after uninstall and new install without choosing an other directory (installed in default-dir) I get an other message: https://forum.fast-report.com/en/uploads/975/EWHHCXN9J6YX.png Translated: Package could not be loaded, %1 is not a valid Win32-app…
-
Hi, that makes no difference, same error
-
... tried recompile as administrator for 32bit and 64bit - doesn't solve the problem
-
... i didn't find an edit, so I comment my own post with some additional information: I installed Fast-Report VCL from Fast-Report-Dowload after buying a subscription, not with "GetIt". Versions: Delphi 11 Professional, Fast-Report-VCL 202…
-
think it must be where CustNo = :CustNo
-
but now a new error I created a new projekt with an total empty form. It is totaly new, nothing on the form. I placed a frxReport as the first component on the form and got this error: procedure entry point @Idglobal@ReadStringFromStream$qqrp15Class…
-
Thank you - that works!
-
Nobody any hint? If there is no way to prepare and print (or preview) such a report in its entirety, I will try to split it before printing. But this will lead to a lot of shown printer-dialogs for the user: if recordcount > 100 then for pagec…
-
gpi wrote: » Try to install IDE on this PC and debug your application It is a customers PC and I am not allowed to install IDE there. The Error occures in this code:   try     if rbPrint.Checked then frxReport1.Print;     if rb…
-
gpi wrote: » gpi wrote: » It happens in all kind of reports: just simple reports with all data in an dataset filled from within Delphi before opening the report, simple reports with an ibxDatabas accessed from within the report just select 3 f…
-
Hello, searching google shows me this way to get a workaround: - on the form add the event "OnUserFucntion" to the frxReport1-component - insert code (see below) in the generated function in Delphi - add the function to frxReport in the form-c…
-
solved!!! The problem is the used database-type (Interbase, SQL). The component doesn't know about the RecordCount of the uses table. So I have to do a query.first / query.last to get the RecordCount available for the component. I do it like t…