nardmoseley
Comments
-
Can you modify our Demo to duplicate the issue you are experiencing? Or
perhaps create a simple example project that we can build and run here? If
so please use standard Delphi components and RB, send in zip format to
support… -
For an example of using RB in a .dll check out RBuilder\Demos\Dll. (For RB
11 the default install location for the demos is the Public Documents or
Shared Folders directory of Win7/Vista or XP)
In the example we pass the Appli… -
Oops. Just sent you the correct patch file.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
Thanks for reporting this issue. I created a patch for RB 11.08 and emailed
it to you. Registered RB 11.08 customers can email support@ and request the
patch.
Best regards,
--
Nard Moseley
Digital M… -
I bet I have never suggested this before, but it would be great if when
posting support questions, developers would include environment info:
Windows version, Delphi version, ReportBuilder version and edition, Data
Access com… -
I emailed you a patch for RB 12.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
I emailed you a patch file for this issue.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
ReportBuilder has the capability to generate multiple reports reports to
single file. The file can be of any format: PDF, Archive, TextFile, and now
with RB 12, RTF, XLS, DOC, etc.
The technique is the same as shown in t… -
Delphi 2009 VCL and later included built-in PNG support. ReportBuilder for
Delphi 2009 and later display a DBImage GraphicType for PNG.
For Delphi 7 you must be using an add-on component for PNG support. The
ReportBuilder help… -
I recommend upgrading from RB 10 to RB 12.
The RB 10 PDF export converts barcodes and charts to a bitmap.
The RB 11 and RB 12 PDF export is more advanced and includes support for
vector graphics.
--… -
Here is some detailed information that I think answers your questions:
http://www.digital-metaphors.com/rbWiki/Gene… -
The RBuilder help contains simple examples. Check out the help topics for
TppPDFDevice, TppRTFDevice, TppXLSDataDevice, etc.
Here are the basics...
Use the constants defined in ppTypes.pas to specify the DeviceType … -
It is against newsgroup rules to post attachments. Please adhere to the
following...
http://www.digital-metaphors.com/support/newsgroups.html
ReportBuilder has built-in support for printing in a background thread. See
the RBuilder help topic for TppReport and from there browse the TppReport
properties and select the topic for BackgroundPrintSettings. The topic
contains d…I emailed you a patch for RB 12.0 that fixes this issue.
RB 12.0 customers that need the patch can email support@ and request it.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
RB 12.01 contains a fix for this issue. I had already emailed Bob, but am
posting here for anyone else following this thread.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Please create a simple example project using standard Delphi components and
ReportBuilder. If possible use the SQL Server Pubs or Northwinds sample
databases. Or provide steps to create sample table(s). Send in zip format to
…This issue in the queue to be researched.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Removing that code may result in the Magic SQL returning duplicate rows and
thus producing incorrect output.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
This rbWiki article shows how to detect whether the report is being
generated to the printer.
http://w…I was not able to create a patch for RB 12, because the fix requires
modifying the interface section of the unit.
Sorry, but we do not have the resources to maintain the old code base. If we
maintain RB 11, then customers will…
I researched this and fixed two issues, which will be included in the next
RB 12 build.
1. When an .rtm is saved, the font was sometimes saved incorrectly - it had
the hyperlink color and style applied.
2. The drag-…This rbWiki article shows how to iterate over the RAP programs. You can
delete a RAP program by calling Program.Free.
in how to reparent existing components through code Comment by nardmoseley June 2010The 'parent' is the band or region property of the component
myLabel.Band := myReport.Detailband; // label's parent is detail band
myLabel.Region := myRegion; // label's parent is region
--
Nard Mo…I tried the code below, but there is no name assigned - which is fine. Also
note that when creating components, the Owner should be the Report.Owner,
which is typically the form/datamodule upon which the report component
resides.The VCL manages object references based on the Name property.
The UserName is an additional concept we added to enable the end-user to
change the display name at run-time. The Delphi help recommends not
modifying the Name prop…For two fields, you need to create two TppMasterFieldLinks.
The detail data needs to be ordered by the linking fields, in the same order
you define the masterfieldlinks.
--
Nard Moseley
Digital Metaphors<…Here is an rbWiki article about designing a layout that can print receipts
http://www.digital-metaphors.com/rbWiki/Output/Printer/Continuous_…
I recommend running the application using a tool that can check for
memory/resource leaks. AQTime and FastMM are two such tools we use here.
Ask the customer to shut down the application, run it again and test the
previe…
To be provide high quality output, the RB XLS export devices must export the
data value, datatype, and display format separately so that the spreadsheet
cell contains the data value in the appropriate datatype (integer, currency, <…