digitalmetaphors
Comments
-
(I responded to your previous post you made added onto an earlier thread,
but here it is again)
This isn't a currently known issue with RB. When are you freeing the
report? You may be able to change your library path to point … -
Make sure the labels are contained in the region by grabbing the region and
moving it in the designer. The labels should be dragged around as the region
moves. I created a simple report with a stretching dbRichText above a
static reg… -
Probably won't make it in soon. You could create your won TppDrawText
descendant and save the FontSize as a new property. Then override the
DrawText method and use Windows API calls so you are not limited by
Canvas.Font. So its possi… -
Thanks, fractional font sizes would be a nice feature.
Cheers,
Jim Bennett
Digital Metaphors
-
See your installed ..\RBuilder\Tutorials\Complete\I.Reports\14.Using the
JITPipeline
there is a pas file in ther which shows the code for this tutorial. You can
run the project by going in to ..\Tutorials\Complete\II.Applications
This is a limitation on the shapes. However, lines should print with the
pen style. We are currently researching the issue.
Cheers,
Jim Bennett
Digital Metaphors
I've never received the 'device not functioning' message when installing
packages. Check to make sure that the old package is uninstalled from
Delphi before the new one is installed.
Cheers,
Jim Bennett
Di…The buildercontrols should get built into the exe. You shouldn't have to
distribute the bpl outside of your exe. The BuilderControlsDesign.dpk
package that you install, should be a designtime package. When you build
the exe, your pr…This is a multi-part message in MIME format.
That would be a bug. I'm emailing you a patched unit.
Cheers,
Jim Bennett
Digital Metaphors
It sounds like you have gone backwards in your version? That or you simply
have a corrupt installation. I've included instructions for cleaning up a
corrupt install.
The data sounds complicated. A JIT traversing a tree. Normally…Place the label/dbtext controls and the memo in a region. Set the region to
KeepTogether...
-
--
Tom Ollar
Digital Metaphors Corporation
Marc's answer is very good.
Also, in order to avoid report regeneration, set Report.CachePages to
True...
-
--
Tom Ollar
Digital Metaphors Corporation
Yes. It is our intent to provide multiple traversal of the same data
pipeline. In older versions, where multiple traversal was not allowed, it
generated a lot of questions...
-
--
Tom Ollar
Digital Metaphors Corpo…There is a DeviceType property on the report. Set it to dtScreen or
dtPrinter. Add ppTypes to your uses clause.
Cheers,
Jim Bennett
Digital Metaphors
I assume you are using RB 6.02 and TeeChart 5.02 for Delphi 6. This isn't a
known problem with this combination. Make sure your datapipeline is set to
visible = true.
Cheers,
Jim Bennett
Digital Metaphors…Most likely there is a corrupt installation of RB. We have installations of
RB 6.02 here with TeeChart 5.01. I just reinstalled this morning and have
had no problems. I would uninstall/delete RB and also RB's Teechart 55x
packages. P…RB6.02 supports TeeChart 5.02 for Delphi 6. For Delphi 5, we support
TeeChart 5.01.
Cheers,
Jim Bennett
Digital Metaphors
Also, this error was a known issue with the initial RB 6 release. Upgrade to
6.02.
Cheers,
Jim Bennett
Digital Metaphors
RB is not entirely threadsafe. Changes were incorporated into RB to support
basic multithreading. Instead of calling Report.Print, use the
PrintToDevices method. Try removing any richtext and barcode controls from
the report.
…The report engine doesn't support skipping of records very well when the
report is set to left to right traversal(the engine was never originally
designed for this). We'll have to recreate a demo at some point in time.
Che…We are aware that there are issues with the Advantage DataDictionary and RB.
We aren't currently supporting it in the DADE plug-in. Sorry, but we have
no immediate plans for upgrading the plug-in at this time.
Cheers,
Try disabling the Advantage DataDictionary.
Cheers,
Jim Bennett
Digital Metaphors
You say that our end user demos are working on your machine, so there must
be a configuration problem. Check the DataSettings property on the Report
Designer component. This is how DADE knows where to find the database.
C…Use the AliasName instead of a path on the Advantage database component. The
current DADE plugin is currently limited in this regard.
Cheers,
Jim Bennett
Digital Metaphors
Advantage 6.11 was just released and we haven't tested with it yet. Are you
using the Advantage datadictionary? This is a new feature they have. We need
to test with 6.11 before we'll have any definite answers. Thankyou, for
your pat…I think that you want the People subreport as pbFixed, but stretch its
design time height to be able to accomodate the 5 people maximum. You can
reisze the subreport component as it appears in the parent band to do this.
…Use the detail band instead of the pagestyle band. The pagestyle is best
used to print as a background behind all of the other bands.
Subreports have a PrintBehavior property. Set this to pbFixed. The
subreport will not stretch…Order the coin records by the links. Print one coin per detail band. This
would give you a vertical list of the coins. To draw the links, you will
need to use the OnEndPage event of the report to dynamically create draw
command obj…The child-type subreport prints just as a memo would print- it has no idea
what a page is, only that it is given space to print on the current page.
The main report's header and footer will print on every page. Set the
subreport's Pr…