nardmoseley
Comments
-
Designer zoom/scale support is being worked on for the next major release.
Thanks to everyone for the feedback.
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
One solution might be to use DataSet DisableControls/EnableControls as shown
below. Even if this does not completely solve the problem, it is recommend
for performance, because when the report iterates over the dataset, the
dataset… -
This question was also sent to support@ and included more details. I
provided a mySQL example that includes a SQL script for creating the report
explorer tables. This resolved the issue.
The error was caused by the report expl… -
The TppTextFileDevice.Encoding property can be used control the encoding.
This is a public property. Use the Report.OnFileDeviceCreate event - here
is an example.
uses
ppFilDev;
procedure TForm1.ppRep… -
See my reply to the thread 'Reports freezing with V14' dated Jan. 11, 2012
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
RB can be used to generate multiple reports to a single XLS file, but it
cannot generate to an existing XLS file. If you have Excel installed on the
machine, perhaps you could try using the COM Excel components to merge the
f… -
I cannot think of anything that has changed that would affect this. The RB
Printer related classes have been internally refactored and enhanced, but
are still using the same Windows API functions. It's up to Windows and the
printer… -
The new scrollable page preview uses a background thread to generate pages
and this can cause issues in some scenarios.
1. One solution is to use the old single page preview by setting
Report.PreviewFormSettings.SinglePageOnl… -
I researched this. It works at run-time. The error occurs at Delphi
design-time, when using Delphi 2010, XE, and XE2.
Will try to fix this for the next maintenance release, RB 14.03
Thanks for reporting this issue.
<… -
The example shows how to access the menu and toolbars. So based on that I
think you can accomplish what you describe. I recommend downloading the
example code and spend time with it. The example shows how to access the
toolbars by … -
Here is an rbWiki example of How To Customize the Designer Menu and
Toolbars, I think it might help you accomplish what you need...
www.digital-metaphors.com/rbWiki/End-User/Designer/How_To...Customize_Designer_Menu_and_Toolba… -
Including icons a simple matter of including some images in a .res file. The
image names should be the same as the component class names. You might want
to contact PSoft and ask them to enhance to their RB support by creating
some … -
To add to Nico's comments. Try setting Report.DataPipeline to nil . From
your description I think you want the TeeChart series to be assigned to the
datapipeline, iterate over the 11 records and generate the chart.
This question was also sent to support@ and has been answered via tech
support email.
In a future release we will consider adding an XLSSettings.WorksheetName
property. For now the solution requires modifying the source code, …I tested with RB 12.05, Build 251 here and did not encounter any issues,
each detail band exported to one XLS row. Check the report designer Help |
About to verify this the version you are using.
If you would like to create a…
I downloaded an Apollo trial. I performed a similar test with the
ApolloTable. I was able to use the Filter, Filtered properties successfully
with ReportBuilder.
I placed ApolloDatabase and ApolloTable components on a fo…ReportBuilder is designed to work with TDataSet descendants. ReportBuilder
uses TDataSet methods to traverse the dataset: First, Next, Prior, Last,
GetBookmark, GotoBookmark, Bof, Eof.
The TDataSet defines properties for Filte…
This will be fixed for the next maintenance release, thanks for reporting
this issue. In the future, please post questions to a single destination,
use either support@ or the newsgroup - but not both.in Delphi XE2. 64-bit. RBuilder 14.03 EAccessViolation in menu pop-up painting Comment by nardmoseley March 2012
Thanks for the feedback. Those mods, plus some others will be included in
the next maintenance release. It's hard to find all the errors, your help is
appreciated.
-
Nard Moseley
Digital Metaphors
www.digital-me…We have tested ReportBuilder with the 64-bit compiler. However, errors are
not always easy to find. For example, if at run-time a pointer value is
small enough to fit into a 32-bit integer, then an error will not occur when
Integer…
Yes, purchasing an upgrade to ReportBuilder 14 also includes the ability to
download the last produced release for Delphi 6, which is ReportBuilder
12.05. I recommend contacting sales@ if you have additional questions about
o…RB 12.-05 was the last produced release for Delphi 6. I recommend
downloading a trial of RB 12.05 and then perform the same test. The
ReportBuilder architecture has evolved quite a long way since RB 7.x.
I also recommend tryin…
ReportBuilder caches the list of available printers, if you printers being
add/removed, then you try calling.
uses
ppPrintr;
ppPrinters.Refresh;
If you get this error on a specific printer, then I …ReportBuilder uses standard Windows API functions to render to the printer
canvas. It is the responsibility of the printer drivers to implement the
Windows API efficiently.
We use the XPS printer here and do not have any issue…
If the error occurs only after the application has been running for a while,
then it is likely caused by memory/resource leaks. 'Canvas does not allow
drawing'. You can use FastMM in debug mode to check for leaks.
If the…The preview form icon is controlled via the Report.Icon property. For an
end-user solution try implementing the Report.Template OnLoadEnd and OnNew
events to initialize the Report.Icon to the Designer.Icon. For an example of
using …ReportBuilder has evolved a long way since RB 7.x.
I recommend upgrading to ReportBuilder 14.
RB 14 includes a TdaSQLBuilder class that provides an easy to use run-time
interface for dynamically modifying the TdaSQL assoc…'dbmemo will not word wrap correctly' is not very descriptive
IIS typically runs under a different Windows user…1. Try adding the following code. For a threaded app, COM must be
initialized for each thread. (The RB RichText relies upon TRichEdit which
relies upon the MS RichEd.dll which is COM based. )
ActiveX.CoInitialize(nil);
I sent you a patch that should resolve the issue. We do not experience a
slow down here, I think you must be connected to a slow network printer - RB
uses the printer device context even for preview - this is necessary for
wysiswyg…