nardmoseley
Comments
-
Hi Paul,
1. Access the Delphi project options, select Delphi Compiler node on the left, then on the right add FMX to the Conditional defines.
2. Starting with RB 19.01, you can set TrbRestClient.DocumentService.Format to cont… -
Hi Thomas,
Thanks for updating your profile
From the Design workspace, define a Report.Par… -
Hi Ken,
You can using Report.Parameters[ ] and then bind the search criteria to the parameter.
Here's an rbWiki link with details.
in End User Reports Applying Selective Criteria Comment by nardmoseley April 2018 -
Hello Aduna/Entwicklung,
1. Please update your profile with your real name. You can also add a signature to your profile.in Manual SQL Parameter to Subquery Comment by nardmoseley April 2018
-
Hi Gary,
For the next release, I'll modify TppCheckboxState to define the enums in the same order as Delphi TCheckboxState. Thanks for the feedback.
RB includes TmyCheckbox and TmyDBCheckbox. It does not have TppCheckbox or Tp… -
Hi Francesco,
I recommend purchasing the printer or have the client send it to you. You need the printer for testing. Its up to the printer manufacturer how they implement the functionality.
The example code you have there lo… -
Hi Francesco,
We've definitely had customers use RB to generate id cards, but we're not aware whether anyone has implemented a Zebra XPS solution for generating magnetic codes.
I Googled and found this ZMotif SDK+ Delphi examp… -
Hi Gary,
- Vcl.StdCtrls is equivalent to StdCtrls in legacy Delphi.
- Enumerated types are similar to constants, but are not interchangeable. Each enum type is a distinct type and is not assignment compatible with other enum … -
Hi Gary,
One solution is to prefix enum values with the type.myCheckBox1.CheckboxState := TppCheckboxState.cbChecked; CheckBox1.State := TCheckboxState.cbChecked;…
-
Hi Sergey,
Thanks for the clarification.
The RB Data workspace is tightly coupled and is not open to integration.
-
Hi Francesco,
The PrinterSetup.DeviceSettings property can be used to save the printer specific settings.
From the RBuilder Help topic for PrinterSetup.DeviceSettings:
Use DeviceSettings to configure a Printer's pro… -
HI Sergey,
RB includes built-in query tools.
RB cannot be used to build a query tool or a reporting tool. That is a violation of the license.in Custom SQL Text Editor/Visual Query Builder Comment by nardmoseley March 2018
-
Hi Paul,
I just emailed you an example project I created. The example contains a TmyRBDisplayFormat plug-in that implements the old RB 18.02 logic.
To use the plug-in, simply add myDisplayFormat to the 'uses'.
Hi Paul,
The TppDisplayFormat class handles formatting (ppDisplayForm.pas). You can descend from it and customize it. You can even customize the formats displayed by the designer format dialog. The initialization section at the bottom se…
Access the help topic for TppBarCode.AutEncode in RBuidler.hlp.
From there you can access another topic on Manually Encoding Data for
Code 128.
1. Make sure that when you create the datapipeline the Owner is the same
as the Owner of the Report.
2. For testing purposes, set Report.Template.Format to ftASCII. Then
save the report and open the .rtm file in the Delphi…
1. Consider using a GroupFooter - it prints on the last page of a group.
2. If want to print something in the Group Header that indicates the
last page for a group then try something like this.
a. create a Label in…
At design time, create the SQL Query and make it active. Switch the
DataSource that is currently connected to the TTable, so that is
references the TQuery.
If the FieldNames are the same then the report may not require any…
Most common cause is that the childreport is not connected to the
datapipeline. To check this, access the design workspace for the
subreport and select the Report | Data menu option.
There will be a DADE Plug-in for dbExpress. It will create dataviews
that use TSQLClientDataSet.
We've tested successfully with Interbase.
Have not tested with mySQL because at this point we do not know how to
…
1. Below is a tech tip on troubleshooting custom paper sizes for Win
NT/2000.
2. You can modify the source code and recompile with RAP as long as you
do not change the interface section of the unit.
3. Setting t…
Report.Template.New;
Check out demo 121 and 123 (dm0121.pas and dm0123.pas) located in
RBuilder\Demos\Reports\Demo.dpr. That should give you some ideas.
--------------------------------------------------------------------
Article: Migrating Master/Detail reports to RB 5.5x
--------------------------------------------------------------------
The following assumes you …
Try downloading the following example. It uses a TppVariable with
Timing.. set to GroupEnd.
http://www.digital-metaphors.com/tips/G…
----------------------------------------------
Article: Can ReportBuilder output reports in
HTMl, XLS, RTF, PDF etc.
----------------------------------------------
There is a ReportBuilder add-on produc…
Sorry, for not responding sooner.
1. Create a main report with a header/detail/footer.
2. Connect the Report.DataPipeline to the master.
3. Add a group to print for each master record and set reprint on
subsequent pa…
If support@digital-metaphors.com sent you an example then please
continue to work with support@digital-metaphors.com on the issue.
- Download the latest version of the printer driver.
- Check that you are setting ppReport1.Engine.Page.PrinterSetup.BinName
- Check that you are using the latest version o RB, 5.56.
ReportBuilder c…
Not sure what you are seeing. You might try changing your library path
to RBuilder\Source and tracing the source code.