nardmoseley
Comments
-
Hi Ken,
Please do not post RB source code to this public forum. Instead send to support@
This issue is likely be due to access rights differences between the host application and the email client. If for instance you are runn… -
Hi Faith,
The order was just placed today and has been processed quicklyIf you have not received the i…
-
Hi Ken,
The Outlook plug-in is not new, what's new is a TppSMTPOutlook.SetModal(aModal: Boolean) class function that be used to specify whether Outlook is displayed modal. The default is True.
The Outlook plug-in can be used b… -
Hi Julien,
I researched this and created a patch for RB 21.
I emailed you about renewing the license. Registered RB developers with an active license can email support@ and request the patch.
-
Hi Dusten,
The RB Drill Down requires a live report, there is no support for export drill down to file.
The Label and DBText elements have a HyperLink property. PDF, Html, Xlsx support the hyper link. So you could consider gen… -
Hi Mike,
I recommend upgrading to RB 21 and then resave the templates. This will convert them to the new text format.
The old RB versions used a proprietary read/write binary format.
-
Hi Adam,
Thanks for the feedback. I'll research adding stream support for the future.
-
Hi Jeroen,
This is a general behavior of RB in dealing with missing fields. It is not specific to RAP. RB does not raise exceptions for missing fields.
-
Hi Andreas,
Try implementing band BeforePrint event like this
myTableGrid.Rows[0].Height := myPipeline['FieldName'];
myReport.Detail.Height := := myPipeline['FieldName'];
notes:
1. Report.Units define… -
Hi Andreas,
The next major release will include multi-monitor enhancements, including save/restore windows position.
-
Hi Dusten,
Below is link to an rbWiki How To example for skipping X labels. The same concepts would apply to skipping X checks, except there will not be columns, so it is simpler. I recommend creating a Region for the detail band that co… -
Hi Bill,
ActiveX is the unit, the code is using the UnitName.FunctionName notation. in modern Delphi it is Winapi.ActiveX. CoInitialize/CoUninitialize are Windows API COM functions.
You definitely need to add those calls. I do … -
Hi Bill,
- Here is a discussion of this issue encountered by another developer
http://www.digital-metapho… -
Hi Marco,
I sent you an example using a Delphi add-on, WPViewPDF, to read PDF pages and convert to metafile for display in RB reports.
-
Hi Stefan,
In a simple test here OnGetFieldValue is called. However note that if you have an event-handler signed to OnGetFieldAsString then that event will fire instead.
I have a JITPipeline with a field named RichTx of type … -
Hi Gustavo,
We only have resources to provide tech support to RB developers with an Active license.
In a previous post you mentioned using a trial version. Please purchase a license and send license details to support@
<… -
Hi Kedul,
Yes. RB 20.04 Standard and Professional work with Delphi 10.4.2.
-
Hi Kevin,
I emailed you an example. -
Hi Gustavo,
To check cell datatype in Excel, open the spreadsheet and in an empty cell, use the formula =Type(A1) to refer to the cell. A value of 1=Integer and 2=String.
In my testing RB is correctly exporting the data type.… -
Hi Mike,
We only have resources to provide tech support to RB developers with an active license.
But answer is no. -
Hi Gilles,
I created a simple test with a Designer on a Form. In a Button OnClick I implemented code to call Designer.ShowModal. I cannot reproduce the scaling issue.
Please provide steps to reproduce.
I'm testin… -
Hi Javier,
I emailed you an example.
Main report A4 portrait with 2 columns defined
Subreport in detail band set to pbFixed and height of page
Report with this configuration generates like a book, two A5 pages … -
Hi Maxim,
- RB 20 saves properties introduced to support features that are not present in RB 6. RB 6 cannot open templates because it does not recognize the properties. (Delphi works the same way)
- The issue here is that binar… -
Hi Maximum,
Next test
Use Delphi 5 to save the report to file. Save to file as binary and to a… -
Hi Maximum,
Try a test in Delphi 5 and Delphi 10.3. Connect a DBMemo to the rbItem table. Does the Template field contain text or binary. (RB can store templates as binary or text).
SQL Server docs specify NText is Unicode Str… -
Hi Maxim,
What data access components are you using - BDE, ADO, other?
What database engine?
What is the rbItem template field data type as defined in the database table?
For the TDataSet descendant ac… -
Hi Gilles,
There is a patch available for RB 20.04 which resolves an issue with toolbar/menus being double-scaled in some cases. This is perhaps what is happening in the first case above. It looks like in the screen shot either the button… -
Hi Dirk,
Check Report.PrinterSetup.Duplex is dpDefault. This should use the printer's default setting as defined in the Windows printer panel. If you're loading report templates, set this property in Report.Template.OnLoadEnd.
Hi Emile,
I emailed you a patch for RB 20.04 that resolves the issue. (It was previously reported by another RB developer).
Hi Erik,
I sent you an email with a couple of test to try.