digitalmetaphors
Comments
-
You do not need to open the reports in any intermediate version of RB for
the conversion process to work correctly. The reports are converted from
the report's version directly to the new version, automatically, when they
are opened.… -
There is an align and space toolbar for a selection. Right click over the
toolbar area at the top of the designer and choose it from the popup menu,
When the region is copied, it copies all of the components inside of the
regio… -
Go to the Layout tab on the DataTree (it's near the bottom).
Cheers,
Jim Bennett
Digital Metaphors
-
Set the FileName string property on the Report.PrinterSetup object, if you
want to control the PRN file. It is a public property, so you won't see it
in the object inspector. There are some articles in the TechTips newsgroup
which p… -
A group band can't print in a different orientation natively.
Are you using columns in the report?
If you are using a one column report then I think you can achieve this
programatically by using our draw command architectu… -
What are you doing in code in order to get this error?
Cheers,
Jim Bennett
Digital Metaphors
-
Try adding daADO to your uses clause. At Delphi 6 design time I can see the
ADOConnection in the object inspector when I edit the datasettings on the
designer component on the form.
Cheers,
Jim Bennett
Dig… -
Put the dbText and the dbMemo in a region. That should cause the line to
not move up into the dbText.
Cheers,
Jim Bennett
Digital Metaphors
-
First, make sure you are using the latest printer driver for the Canon. If
you are using Delphi 3, you can upgrade to RB 4.2 for Delphi 3. This is the
last version of RB that supports Delphi 3. Currently, we have RB 6 for D4,
D5 an… -
In DADE, the query wizard's form is a TForm, not a TppForm descendent.
You're would like to get at the buttons on the form. The button in question
is created in daQueryWizard.pas in procedure
TdaWizardFinishPage.CreateControls. Tda… -
Here's the code:
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls,
daSQL, daDB, daDBBDE, daQueryDesigner, ppTypes;
type
TForm1 = class(TForm)
Button1: … -
When the report generates, it uses the canvas of the printer to get the text
width. If autosize is true, then it should give it the exact width that it
needs to print that text, for the designated font. Is it just on one
printer? T… -
You shouldn't have to repost. Is there a post in particular that you need
some info from- I can get it off the server if you can't find it. What was
the subject? I know OutlookExpress is really bad at searching. It usually
can't f… -
At the RAD Tools (Delphi, Kylix, C++ Builder) Product Address, (it looked to
me like there was about 1,000 people attending), the speaker asked:
Who out there is using Kylix?
Three people raised their hand. THREE!!! This … -
Most likely our next maintenance release will be RB 6.01 for Delphi 4,5 and
6. It's a free upgrade from RB 5.x
Cheers,
Jim Bennett
Digital Metaphors
-
IF you create a report and save the report template to file or database,
then when the template is loaded up, it is converted into the new format.
Subreports are objects in the report, and so, all objects in the report
(including subr… -
We don't have a web page to download patches. Shoot
support@digital-metaphors.com an email about a possible bug your
experiencing and we'll resond with an answer as soon and as best we can.
Cheers,
Jim Bennett
D… -
From the Delphi help file on the datasource property:
property DataSource: TDataSource;
Description
Set DataSource to automatically fill parameters in a query with fields
values from another dataset. Parameters … -
We were hoping to show off a new release of ReportBuilder for the show, but
the new features are still in development, so we cancelled the session. We
can't provide any hints at this time for a date of release or more detailed
inform… -
Which demo does this? Is this an out-of-the-box search value or are you
entering a search value into one of the demos? What value(s) are you
searching on?
Cheers,
Jim Bennett
Digital Metaphors
… -
There were a few changes and updates to the linking logic. Since we don't
have the other DADE plugins rebuilt (which you could use as examples),
you'll need to trace through the DADE code to get your plug-in working,
sorry.
Which database are you using? The DADE plugins haven't been rebuilt until
we get the Delphi 6 version for the other 3rd party databases. Have you
installed RB6.01? How are the dataviews configured- are there search
criteria, order …I would check the corrupt installation instructions in the tech-tips
newsgroup to search for RB's bpls. Perhaps older packages are being used by
Delphi.
Cheers,
Jim Bennett
Digital Metaphors
One more feature, to be aware of, is that subreports can be loaded at
runtime. There is a demo of loading them in the /RBuilder/Demos/EndUser
installed directory.
Cheers,
Jim Bennett
Digital Metaphors
…There is no such property at this time.
There is a demo showing how to change the page numbers which should be
printed in the main reports demo #124.
A range can be set through either one of these calls:
p…Sorry, for the delay- I overlooked this post. Viewer is a public property
of the TppCustomPreview class.
Cheers,
Jim Bennett
Digital Metaphors
The TppPreview class was created for our default preview, and yes, the
controls are created in code. The advantage is that this previewer is
modifiable both in the report designer and on the viewer. However, it
doesn't have to be cre…I would descend from TppCustomPrevew just like TppPreview does. You should
then get access to the KeyDown event. We apologize for breaking your code.
Cheers,
Jim Bennett
Digital Metaphors
Make sure your library path is pointed at \RBuilder\Lib. Do any of our
demos work at runtime? The report preview architecture was refactored for
RB 6. There were requests for an improved previewer in the designer and in
creating on…Try descending from TppCustomPreview. Copy and paste our TppPreview code
into your new class and add/subtract controls as you wish. Register your
new class and you should be good to go.
Cheers,
Jim Bennett