digitalmetaphors
Comments
-
It's up to Waler to support. You can always dive into his supplied source.
Look in ..\Program Files\Extradev\Delphi\Source\TxtraDev.pas for the
TXLSDevice code.
Cheers,
Jim Bennett
Digital Metaphors
<… -
The device type can be set on the print dialog. If Report.DeviceType is
screen, so it can be previewed on the call to Report.Print, you can then set
the print dialog to always default to the excel option in the
Report.OnPrintDialogCr… -
Our DADE linking implementation creates the same data pipeline objects and
these properties are used internally by DADE. You don't need to set these
two DBPipeline properties, when their datasets are already linked.
Cheers,
Place a region component in the summary band and set it to KeepTogether =
True. Place all of the components in the region. To test if they are
parented by the region, drag the region around in the designer and the
controls should mov…The canvas is determining the text width of the text in this case. The
canvas is going to be the default printer's canvas. You can test this by
getting the canvas and performing the text width call in a separate test
project.
There is an explicit check to disallow this, because it will cause problem
when strethcing text breaks across pages and it will cause problems for the
text engine. You will have to change your copy of the source and recompile
using .…You'll need to set it in the Report.BeforePrint event, as you can't change
the Charwrap setting while the report is generating.
Cheers,
Jim Bennett
Digital Metaphors
Haven't heard of this behavior before. Try running the report with our
latest ReportBuilder 6.02 to see if that fixes the problem. Contact
info@digital-metaphors.com with your registration info to get the link. If
it still isn't re…Use the ShiftWithParent property for non stretching controls, and use the
ShiftRelativeTo on stretchable controls. Check out the help file for more
info.
Cheers,
Jim Bennett
Digital Metaphors
What do you mean by improperly? The total page count isn't going to be
known until the first pass has completed. Do you have calculations
dependent on the total page count?- you'll need a twopass report if this is
true. Are you man…Thankyou, for the suggestions.
Cheers,
Jim Bennett
Digital Metaphors
Just drag the report from the recycle bin to the folder you would like to
restore it into.
Cheers,
Jim Bennett
Digital Metaphors
Use the PageStyle band. This band pritns behind all others on the page and
acts as a background layer. Resize the band to the page height.
Cheers,
Jim Bennett
Digital Metaphors
You are not using DADE if the data access components exist on the form.
If you create queries in DADE, and they are saved with the report, then you
are using DADE, even if in the runtime designer the DADE tab isn't visible
when …When the first label is dropped on the designer, the printer driver is
accessed to determine autosizing, and this may cause your av if there is a
problem talking to the printer. Make sure you have a default printer
installed on the m…Upgrade to RB 6 and Delphi 6, as the report/datamodule AV problem has been
solved.
Cheers,
Jim Bennett
Digital Metaphors
You should be able to have either configuration. The subreport which has
SkipWhenNoRecords false should cause the master to be printed, eventhough
the other detail dataset is SkipWhenNoRecords. I played around with this in
a simple …In the DetailBand.BeforePrint event handler, change the TextAlignment
property of the text components. Add ppTypes to your uses clause.
Cheers,
Jim Bennett
Digital Metaphors
Are you manipulating the dataset? Try setting Report.CachePages = True.
Cheers,
Jim Bennett
Digital Metaphors
The best bet would be to use a fixed style subreport to print the text
inside of a fixed area. Resize the fixed subreport to be the height that it
should be, at report design time.
Cheers,
Jim Bennett
Digi…Sorry, there aren't any breakpoints available for RAP. Showmessage() is one
way to see the values in your calculations. You could transfer the RAP
event handler temporarily to a Delphi event handler and you can use Delphi
breakpoint…The ppChrt.pas file from the patch should also be copied to your
..\RBuilder\Teechart\Tee66 directory.
Cheers,
Jim Bennett
Digital Metaphors
Are you using Delphi 5 or 6? The patch is for RB 6.02 and Teechart 5.02 for
Delphi 6. We are working on the next maintenance release which will fix
these TeeChart issues. We will support the latest version of Teechart for
Delphi 5 …I'm sending you all an email, because we are still working on the next
maintenance release.
Cheers,
Jim Bennett
Digital Metaphors
Clarification, the patch works for Delphi 6 and Teechart 5.02.
Cheers,
Jim Bennett
Digital Metaphors
We have a patch that fixes the issue, since we released RB 6.02 before
Teechart released a final version of Teechart 5.02. The fix will be
included in the next release and will also support Teechart 5.02 for Delphi
5, as well as Delp…It's the behavior of the TSaveDialog. If you create a demo project it will
behave in this manner when the SaveDialog.Options include ofOverwritePrompt.
Cheers,
Jim Bennett
Digital Metaphors
1. You can't close the preview form while the report is generating. You
should be able to call Report.PreviewForm.Close.
2. The pages that have been generated, will be sent to the printer. They
can't be cancelled from RB at t…You can read the Report.PrintDialog.DeviceType property to see which device
they selected to print in the PrintToFile device drop down list of the print
dialog. Use the Report.OnPrintDialogClose event.
Cheers,
Jim Be…Can you be more specific to the version you are using? There were a series
of releases for 5.5x. In RB 5.55, we reimplemented the word wrapping logic
for plain text memos in order to fix a bug. Upgrade to the latest 6.02 to
see if …