nardmoseley
Comments
-
Hi Giuseppe,
Is the code implemented in Delphi or the RB Calc workspace? If Calc workspace, try a test with Delphi code. If that is faster, create a RAP pass-thru function that can be called from Detail BeforePrint.
If you wou… -
Hi Jeroen,
Here are some options:
1. Typically a web application will generate reports to PDF and return to mobile device. The mobile device can print to the printer. This is the solution we use for the REST service and mobile… -
Hi David,
Set Report.Template.IgnoreErrors True to ignore reader errors (the error is ignored, no dialog displayed, no exception raised)
Set SuppressErrorDialog True and IgnoreErrors False, when you want to use try...except to … -
Hi Carlos,
Do not use form inheritance. Delphi form .dfm's contain the object definitions. This conflicts with report .rtm's which contain the report definition. (Its the same thingin Error reading ppBaseReport. PrinterSetup.PrinterName: Access violation Comment by nardmoseley February 2019
-
Hi Johnny,
- For credentials, leave empty and press Ok. The report demos and tutorials are designed for any RB Edition and as such do not use the RB Data workspace (DADE).
- The end-user demos and tutorials are included with R… -
Hi Johnny,
The scrollable page preview generates pages in a background thread. This requires thread-safe data access. In Delphi (and Windows) visual controls can only execute in the main thread.
Simplest solution is to use the… -
Hi Carlos,
The name ppBaseReport indicates you may be using form inheritance. Do not use form inheritance with RB.
Check the RB Help | About for the version. RB 19.03 is the latest.
-
Hi Scott,
Select Region. Now position mouse inside Region and press ctrl + shift and drag mouse to create a bounding rectangle that selects contained components. Release mouse button, Region will de-select and components will be selected.… -
Hi Dave,
I'm not able to recreate the issue. As a test I set my Windows Regional settings to English UK. The currency is displayed correctly in Excel.
If the application contains code that is changing the Delphi FormatSettings… -
Hi Ralph,
My guess is the error is due to virus software, insufficient access rights or out of disk space.
We've never had any reports of this error, the source code has not changed since RB introduced XLS export several versi… -
Thanks for the follow up, we have not had reports of issues with AutoSave.
-
Hi Francesco,
What issue are you encountering?
Here's code to disable AutoSave
ppDesigner1.Form.DesignControllers.DocumentController.AutoSave.Enabled := False;<… -
Hi Edward,
Please update your profile with the registered email address for the license.
We only have resources to provide tech support to Delphi developers with an active RB license.
-
Hi Carlos,
Please update your profile with the registered email address for the license.
We only have resources to provide tech support to Delphi developers with an active RB license.
-
Hi Yusuf,
Developer feedback is an integral part of future direction and features. You can post here or send feedback/feature requests to support@. We keep an internal list of requests and do not publish a road map.
We're work… -
Hi Erwin,
Using RB 19.02 and Delphi 10.2 I can open the report designer for two reports at the same time. I think there were some Delphi versions where this was not working - but it was due to the Delphi IDE, not RB. For example, try the … -
Hi Michael,
Please contact the publisher of the ERP package. It is their responsibility to provide you with tech support.
We only have resources to provide tech support to Delphi developers with an active ReportBuilder license… -
Hi Francesco,
The RAP function you implemented is the only solution.
You could try another approach. RB implements the AutoSearch 'ShowAllValues' feature by dynamically building the where clause. When ShowAllValues True, the w… -
Hi Francesco,
I recommend implementing a lookup list for EmployeeType. This provides user-friendly interface and solves the problem.
SELECT DISTINCT ID_EMPLOYEE_TYPE , DESC… -
Hi Julien,
I'll research improving this for RB 20, it requires some re-design.
For now I recommend the following:
- Use RAP Global Declarations Variables to defineHi Greg,
I created a patch for RB 19.02 to resolve this issue.
I recommend updating to RB 19.02 and then apply the patch. (Your active RB license subscription provides access to both). Please email support@ and request the pat…Hi Gerhard,
I created the following rbWiki article on TableGrid Fundamentals, including a downloadable example. Please review and let me know what additional information you would like to see. I can enhance this article and/or create addi…Hi Gerhard,
The RBuilder Help topic for TppTableGrid includes information for using the TableGrid. Let me know what additional questions you have. I can also create a demo, let me know if there is something specific you would like to see.…Hi Nicolas,
My bad, this should work...
ppDesigner1.Form.DesignControllers.DocumentController.AutoSave.Enabled := False;
Hi Nicolas,
1. To prevent Designer Save As prompt, implement the Designer.OnShow
ppReport1.SaveAsTemplate := False;
2. To disable AutoSave
ppDesigner1.Form.DesignControllers.DocumentController.AutoSav…Hi ?
Please modify your support forum account to use your real name.
Hi Eric,
Digital Metaphors only has resources to provide tech support to active licensed customers.
With an active license you qualify to open a tech support case for issues with the latest release (currently RB 19.02. )
…Hi Wilton,
Please do not post RB source code, I deleted your post.
Your request is on the ToDo list.
In the future please use support@ for private content.
Hi Claudio,
Here are tips for implementing RB DataSnap.
1. First step is to implement RB DataSnap Server and Client.
I just updated rbWiki to included the latest RB DataSnap example. (DataSnap has evolved over time…Hi Wilton,
I just updated the example, if you want to download the code example again. Check out the main form implementation section, there are {$R} references to include the required res files.