digitalmetaphors
Comments
-
You've followed the Tech Tip newsgroup article: Selecting Paper Bins for
Each Page?
Cheers,
Jim Bennett
Digital Metaphors Corp.
-
How are you copying the report? Simply copying and pasting the report
components won't do it. The best way to use one report as a template for
another is to save it to a template of a different name which will save the
report and the … -
Basically what Chris said. After enabling AllowSaveToFile (and optionally
setting the TextFileName property) simply select print from the designer and
check Print To File.
--
Cheers,
Alexander Kramnik
Digita… -
What is the variable's value supposed to be and how is it being calculated?
In the on Calc? Is it a calculation based on data in the pipeline? If so
then do you have the pipeline connected to the report?
--
Cheers,
What kind of a subreport is it? Child subreports are not supported for text
output. It must be a section subreport.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Check out http://www.digital-metaphors.com/tips/CustomPreview.zip for an
example of creating a custom preview.
You can enhance the interface of your custo…This isn't an issue we've heard of before. Does this occur on a simple blank
report or only when the images exist along with other components? What
version of Delphi, RB, and Win are you running?
--
Cheers,
Alexa…You can't add place holders but you can do this by adding dummy records for
the purpose of printing the report. Then you can use an event such as the
DetailBand's BeforePrint event to generate a string such as "June is
missing".
…Is this data in a subreport? If so then make sure that the subreport is
assigned to a data pipeline.
--
Cheers,
Alexander Kramnik
Digital Metaphors
There's no such thing as a luck compile
The exe must have blown up for a
reason. Check your uses clause for units you don…Manually cleaning up old RBuilder units and reinstalling RB should take care
of this problem (directions are below). And yes, we recommend TeeChart 5.02
if you are using RB 6.03.
--
Cheers,
Alexander Kramnik
Have you tried to run the end user example? If so, did you encounter the
same problem with that? You can try clearing the metadata cache as shown
below.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Correct, the Report's BeforePrint fires once. The OnStartPage event, on the
other hand, fires at the beginning of every page. One thing to check is the
Timing property of the variables and set the Reset On property to something
like G…Which band are you putting the totals in? You can put them in the footer
band which prints in the same place on every page.
--
Cheers,
Alexander Kramnik
Digital Metaphors
The footer is statically sized by definition and cannot be dynamic height.
What are you trying to do? You can use the summary band instead of the
footer as shown in the example below.
in Dynamic Height of footer Band Comment by digitalmetaphors July 2002The mismatching help descriptions have been fixed for the next release. The
DatabaseName and the DataSettings is used to execute the queries for the
report. For correctly hooking up datasets for the folder/item/join/data
dictionary in…The group footer will only print after the group is finished. It seems like
you need to use the page footer which will print on every page regardless.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Set Report.SavePrinterSetup to true. This will save the TppPrinterSetup of
the report between the report. The DevMode structure can also be saved when
you are setting the printer specific properties. Here is the example which
does …Change the paper name by doing:
Report.PrinterSetup.PaperName := 'A4';
Report.PrinterSetup.PaperNames, on the other hand, is the list of all the
paper names.
--
Cheers,
Alexander Kramnik
Digital M…Are there any stretching components in those bands? What is supposed to
cause the band to stretch if the memos don't.
--
Cheers,
Alexander Kramnik
Digital Metaphors
The point of this event is that you provide the logic for saving the report.
Try this:
if (sOrigFilename = 'Contacts.rtm') and (sNewFilename = 'Contacts.rtm') then
ShowMessage('Message')
else
Report.Tempate.Save;No. You have to use the RichText component to be able to vary the font.
--
Cheers,
Alexander Kramnik
Digital Metaphors
The point of the Page Style is that it is supposed to span the entire page.
The best thing to do would be to set the page style to the height of the
entire page and then position the content at whichever position you desire.
--<…You should be able to remove ppFormWrapper from the uses and change the
ppCustomClientDataSet reference to ppClientDataSet.
Whats the x in RB6.x, upgrade to 6.03 if you have 6.02 or lower.
--
Cheers,
Alexan…Check the end user Midas demo at
http://www.digital-metaphors.com/tips/Midas.zip. If you want to use the
Midas connection for report queries as well then you'll n…Are you using the TechTip? Yes BinName can be overriden by another setting
of the PrinterSetup, of course this all depends on when you set the
PrinterSetup or BinName or when you are loading a report template.
Cheers,
Try placing all of the memos in a singel region component and set the
region's KeepTogether property to true.
Cheers,
Jim Bennett
Digital Metaphors Corp.
Can you send an example to support@digital-metaphors.com?
--
Cheers,
Alexander Kramnik
Digital Metaphors
Are these components in a region? Is anything set to KeepTogether? There is
a known issue where this can happen with a single component that thinks it
can print on a page but ends up having to print because it barely does not
fit. Tho…You two side by side subreport. Disable ParentWidth to be able to size them
horizontally.
--
Cheers,
Alexander Kramnik
Digital Metaphors