digitalmetaphors
Comments
-
You can place variables on the subreport and copy over the calculated values
from the main report to this subreport.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
Use TppVariables instead of labels. Use the TppVariable's OnCalc event as
this is the only event which is guaranteed to fire when you want it to
(OnTraversal). The data pipeline's OnTraversal event may fire more than
once per record… -
Can you please explain in more detail what you are trying to achieve? Do
you also want 3 columns in the subreport or are you trying to align the
subreport differently within the context of the main report.
--
Cheers,
… -
How large is the image? How fast does it print if you print from another
imaging application? You can try toggling the DirectDraw property to see if
that speeds it up.
Cheers,
Jim Bennett
Digital Metaphors… -
The next version of RB (Ent, Pro & Std) is thread safe. It has to be
because the report engine that the RB Server gets report output from has to
be threadsafe.
Is 6.03 DADE fully thread safe: We had to make changes for RB 6… -
Here is a full Delphi 6 RB 6.03 working demo, it was easier than what I was
trying to make it out to be.
http://www.digital-metaphors.com/tips/Pa… -
I haven't got a demo working yet in one pass. I'll give it a go today and
see if I can force the summary to be correct, after stopping the engine
halfway through a detail subreport. So far the engine isn't letting me
generate a summa… -
You could use the Report.OnEndPage event to check the
Report.Engine.AbsolutePageNo to see if you have just finished printing on
the second to last page based on the page limit number. If so, then tell
the datapipeline to Skip until t… -
You'll have to modify the source to 6.03 for this to work this way. This
has been added as a property of the txt pipeline for the next release of RB.
{---------------------------------------------------------------------------
… -
How are you handling the custom paper size? Are you using Win9x or NT/2000
or XP?
-----------------------------------------------
Article: Custom Paper Sizes on Windows 2000
------------------------------------------… -
Have you set the BinName to something like 'Manual Paper Feed' so that the
printer knows that it should print with this configuration? Set
Report.PrinterSetup.BinName in the object inspector. Read
Report.PrinterSetup.BinNames[i] to … -
Can you please be more clear regarding what you are trying to do? Are these
fields on the form whose content you need to update? Or are you trying to
update data in the DB as the report prints?
--
Cheers,
Alexand… -
Email support@digital-metaphors.com to request a patch.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
See the demo below which does this:
http://www.digital-metaphors.com/tips/AlphabetIndex.zip
--
Cheers,
Alexander Kramnik
… -
I have emailed you a sample project.
Cheers,
Jim Bennett
Digital Metaphors
-
Use a JITPipeline. Set the record count to 1. Connect a DBMemo to the
JITpipeline field. In the JIT's OnGetFieldValue, configure the memo text
value how you would like it based on the conditions that you have for the
memo. For the ca… -
The BeforePrint event will fire every time the band atempts to print. It
will fire even when the band won't fit on a page. If it prints over multiple
pages, then it will fire on every page. To solve your problem, you need to
not use … -
Yes. Simply do not connect a pipeline. Place the memo in the detail band and
use the detail band's before print event to load the contents into the memo.
The detail band will only be printed once if there is no pipeline connected.
You can print the pages to cache and then print them from cache in reverse
order. For example:
var
lDevice: TppDevice;
lPrinterDevice: TppPrinterDevice;
liIndex: Integer;
begin
lDevice := TppDev…If you want to try using the printers capability to do this check out the
windows documentation on using the DEVMODE structure which you can use to
query and set printer capabilities. If the device is capable of this then
you tell the…Sorry, but actually we will not be able to recompile and redistribute the
binaries until the next release.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Extended ASCII characters are not supported.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Check out the free rotated label component in the friends section at
www.digital-metaphors.com.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Create an aggregate field as a sum of the total per state (you'll also have
to group on the appropriate fields) and sort the data by that field.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Make sure you have the latest pritner drivers installed.
Try toggling the TppImage.DirectDraw property.
Cheers,
Jim Bennett
Digital Metaphors
Look into Section style subreports or subreports in general.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Since zero is a valid number there is no way to tell the crosstab to skip
that number in particular. You will actually have to work with modifying the
dataset in this case. By this I mean either changing the zeros to nulls so
that the…Good suggestions. We'll definately keep them in mind.
--
Cheers,
Alexander Kramnik
Digital Metaphors
In other words your requirement is that when at least two lines cannot fit
on the remainder of the page, only then carry the entire memo over. Though
there is no direct way to tell it to do that, you can always take the
approach of ma…One question comes to mind. If you only want to display the last quoted
value then why do you need a subreport which traverses all the quoted
values?
To answer your question though: since you want to use the variable to sum to