nardmoseley
Comments
-
Hi Ken,
There is now a patch available to resolve this issue.
Developers with active RB 20 license can email support@ and request the path.
-
Hi Robert,
Iterate over the .rtm's and for each, use Report.Template methods to load the .rtm. Then set Report.Template.Format to ftASCII and then call Report.Template.SaveToFile
Report.Template.Format defines ftBinary as the d… -
Hi Jeroen,
RB relies upon Delphi TPicture.
I reviewed the Delphi TPicture source code. It contains logic to write Picture.Data as an internal binary property. The logic writes the graphic ClassName followed by image stream. S… -
Hi Igor,
- Below I pasted the Archiving section from the RB 20 New Feature list.
- I think its too late to change the record format, would break archives created with RB 20.
Archiving
---------
- ne… -
Hi Jeroen,
You'll need to edit the old templates as text and replace the DevEx PNG class name with the Delphi PNG class name.
-
Hi Laurence,
RB leverages Delphi's TPicture/TGraphic architecture.
Here's an example:
lGraphic := ppLogoImage.Picture.Graphic;
if (lGraphic = nil) or… -
Hi Joe,
For dmMain.pas, add the following code to the DataModule OnCreate event
Database1.DriverName := 'SQLite';
Database1.Params.Database := 'C:\Users\Public\Documents\RBuilder\DemoData\RBDemos.sdb';
-
Hi Alex,
Thanks for providing the example.
The D2007, RB 12.04 example contains references to 3rd party graphic/image components:
uses
EnTifGr, PngImage1, EnJpgGr;
The XE7, RB 19.03 example does n… -
We're researching a solution. This error is isolated to unloading the RB design-time package for Delphi 10.3. It does not affect using RB in Delphi or applications built with RB.
-
Hi Julio,
What is the specific error message you are receiving? What RB version did you have installed before? Please provide details.
I performed a test install of RB 20 Enterprise for Tokyo 10.2 and it worked correctly.
Hi Bohdan,
Yes, RB 19.04 includes support for Delphi 10.3.2.
Hi Dirk,
I recommend creating more apps. Dedicated REST Server app. Report Designer app, etc.
REST Server App
- create a DataModule call it 'myReportModule'. Add the report, datapipelines, data connection, etc. Add one …Hi Giuseppe,
We only have resources to provide tech support to Delphi developers with an active ReportBuilder license. If you meet these requirements, please send license details to support@.
Hi Yusuf,
There are no known issues with RB.
I'm not clear, sounds complicated. You state 'we have Report.ShowPrintDialog=false' and later ask about how RB sets up the the print dialog? When ShowPrintDialog False, no print dia…Hi Will,
I recommend using the latest Delphi and ReportBuilder versions and participating in the subscriptions. Using the latest tools provides the best Windows 10 support and things are improving going forward. It's a moving target.
Hi Yusuf,
Report.DeviceType specifies device used by Report.Print (screen, printer, PDF, ...)
Report.AllowPrintToFile specifies whether Print dialog includes print to file options. (Report.Print displays print dialog when Repor…Hi Dave,
ReportBuilder includes XlsxReport, XlsxData, XLSReport, XLSData.
The Excel option is being added by a 3rd party add-on your app is using. I recommend removing it.
Hi Dave,
Check the Designer Help | About for the RB version. If you are not using RB 19.04, please update and retest.
If you have an issue with RB 19.04, please create a simple Delphi example we can build and run in the debugg…Hi Mauro,
Please create a simple, minimal Delphi example that we can build and run in the debugger. Use standard Delphi components and RB. Also include any images as separate files. Send in zip format to support@digital-metaphors.com.
Hi Jonathan,
Please contact Sage for support. Digital Metaphors receives no distribution royalties from Delphi developers that embed end-user reporting solutions in their applications. It is the responsibility of the software publishers t…Hi Tom,
I recommend creating thread-safe container(s) for the reports. Create a Form/DataModule that contains the report + data pipelines + any other components required to generate the report. For example, a data/server/service connectio…Hi Jeroen,
Thanks for providing the example. I'll follow up via email.
This is beyond the scope of what's currently supported, but something we can consider improving in the future. It's a challenging issue.
For no…Hi Jeroen,
Can you create a simple example using the rbDemos data and send to support@. I'll research it.
Apologies, I lost track of this post.
Hi Eliseu,
I recommend upgrading to the latest Delphi and ReportBuilder and going forward participating in the subscriptions. Updating developer tools regularly is an important part of building and maintaining your applications and is a …Hi Paul,
Try this..
ppDesigner1.Form.LayoutManager.WorkspaceView.Workspace.ShowMargins := False;
Hi Massimo,
I recommend contacting the publisher of the product for end-user tech support - it is their responsibility.
We only have resources to support Delphi developers with an active ReportBuilder license.
Hi Julien,
I added this to the requested feature list.
Thanks for the feedback.
Hi Ken,
Exporting to XlsxReport or XlsxData? Or maybe both?
Do you have some report layout elements that are exporting empty strings? I'm trying to create a test case. The code you reference has not changed and I reviewed othe…Hi Mike,
Try setting Image.ReprintOnOverFlow True
Hi Martin,
RB exports the data, data type, and format as a separate cell attributes. This provides the best quality output. For DBText the field data type is used, for Variable the variable data type is used. For Label, text data ty…