nicocizik
Comments
-
Hi Bruce,
1. Take a look at the following article on how to fill a page with lines. It uses a group footer to determine the end of the details and checks the PrintPosRect property for the page position in the AfterPrint event. It then u… -
Hi Carl,
According to our records, you have an updated software subscription. Is there a reason you are using older versions of ReportBuilder? I highly recommend updating to the latest version (19.02) as this is the only version we are … -
Hi Eric,
It is possible to draw a box with 4 lines
.
I highly suggest using the new TableGrid component… -
Hi Eric,
The issue is a long standing one that is difficult to "fix" due to backward compatibility requirements and mathematical limitations. The issue occurs when attempting to line up lines and shapes. Lines and shapes are drawn diffe… -
Hi Shereif,
The standard way to combine reports is to use Section subreports. Start by creating a single empty report with a detail band only. Then add the number of sections style subreports you need for each report to be merged. This… -
Hi Eric,
Add a DBCalc component to the detail band and set its DBCalcType property to dcCount.
-
Hi Mario,
Take a look at the following articles on how to print to a continuous paper printer. We have numerous customers using these techniques to print receipts, labels, etc. The second article includes a small example.
Hi George,
The message indicates that the software subscription has expired for the serial number entered when installing ReportBuilder. You can update your serial number in the Help | About option of the main menu in the report designer…Hi Stephen,
If you would like to create a custom previewer, I suggest creating a preview plugin rather than piecing together the viewer and other features manually. It’s also possible to display the preview inside a panel so it’s not res…Hi Samuel,
The ability to select and join multiple tables in the query wizard has not changed. It is still possible to select multiple tables and join them (I tested this to verify).
Are you perhaps using a DataDictionary with…Hi Samuel,
Okay, let's go back to having an Unassigned parameter and alter the ItemUpdate SQL to handle the special case when there are no records in the dataset.
if :ItemI…Hi Samuel,
This appears to be a change in NexusDB. The latest version(s) of NexusDB altered the way values can be compared to an unassigned (NULL) value which causes access issues when reading or manipulating the ItemUpdate query.
<…Hi Gerhard,
You need to add ppChrtUI to your uses clause to register the TeeChart editor at runtime.
http:/…Hi Ian,
Try using the DataPipeline.EOF property to determine whether data traversal has ended, then hide the header in the StartPage event. In my testing with the following code, I was able to get the effect you are after.Hi Chris,
This is not a known issue with unicode encoding. For RichText, bullet points are resolved to Unicode characters so it is necessary to use Unicode encoding when exporting bullet point RichTexts to PDF.
Please provide …Hi Gerhard,
I'm sorry but I'm unsure how this is a ReportBuilder issue
.
TcxPageControl is a DevExpress c…Hi Martin,
This is not a known issue with RB 19.02. I first suggest commenting out all your event code and see if that helps with the problem. If not, please create a simple example demonstrating this behavior and send it to support@dig…Hi Stephen,
Try calling Report.PrintToDevices after assigning the report property to the Viewer. This should display the report inside the view rather than loading a preview form.
I suggest spending some time reading the Devel…Hi Jens,
Yes, you will need to install the Professional version or higher to open a project that contains internal queries (Data Modules) created via DADE.
I highly suggest installing the Enterprise or Server versions when te…Hi Tommy,
You can use the TppPrintPreview.AccessoryToolbar to adjust the width of the area to the left of the report viewer in the preview. This will need to be done from an event that fires after the preview form has been created. Some…Hi Intanont,
Please let us know which version of Delphi and ReportBuilder you are currently using.
Hi Laercio,
Which version of ReportBuilder and Delphi are you using?
Hi Scott,
I sent you a patch that gives you access to the report object from the Email Dialog ancestor.
Hi Scott,
To get the effect you need, you will need to use section subreports and toggle their visibility rather than the detail and summary bands. ReportBuilder was not designed to show only the Summary band.
Start by creatin…Hi Alejandro,
A report will only traverse the dataset it is connected to. If you need to traverse more than one dataset, you will need to use subreports (connected to those datasets) to do so.
I suggest taking a look at the De…Hi George,
This is a known issue. There is a patch available for RB 19.02 that solves this problem. All registered users with an active software subscription can email support@digital-metaphors.com to receive the patch.
Hi Alejandro,
The BeforeOpenDataPipelines event is designed to fire only once before all datapipelines are opened. This event was added so that it would be possible to easily add custom parameters to the underlying SQL or perhaps generat…The issue Mr. Lawrence was having was due to the FieldTitle property being set for a form field in the detail band of a report. Some PDF viewers check the form-field Title property and duplicate the data if the title is the same for multiple fields…Hi Tim,
This is not currently a feature of ReportBuilder but I can see how it would be useful. I will add this to our list of possible enhancements.
Currently you would need to manually update the HyperLink property from an ev…Hi Ian,
Be sure you have the WordWrap property set to True. Also note that a proper CRLF is #13#10 or Chr(13) + Chr(10).
Is there a reason you are using a Variable? Generally Variables are meant for calculations in the OnCalc…