digitalmetaphors
Comments
-
Thanks, I received your demo.
Cheers,
Jim Bennett
Digital Metaphors
-
You setting the OnCalc assignment to nil in the BeforePrint event of the
Report, or in the DetailBand...? Have a look in the main reports demo
project. There is an event tracker demo. You can use this example to see
when the events a… -
The OnCalc is the only event which should be used to calculate a value for a
TppVariable.
When the report is sent to the printer, after the preview, then the report
pages are regenerated (if Report.CachePages is False). If you a… -
Sorry, we have no immediate plans at this time.
Cheers,
Jim Bennett
Digital Metaphors
-
Sorry, we don't have a Kylix version of ReportBuilder.
Cheers,
Jim Bennett
Digital Metaphors
-
I knew what you meant:) just wanted to avoid any confusion.
Cheers,
Jim Bennett
Digital Metaphors
-
> Register/buy ReportBuilder at Digital Metaphors and you'll get the
download
You'll get the link via email (not mail), when you order:)
Cheers,
Jim Bennett
Digital Metaphors
-
If the charts will print on their own page, then try setting Report.AutoStop
= False and Report.PageLimit = 2.
Cheers,
Jim Bennett
Digital Metaphors
-
Can't say for sure what change we made which would have affected you're
report, exactly.
One step would be to try RB 6.03 on your reports. Send your full
registration info to info@digital-metaphors.com for the upgrade link and<… -
What version of RB are you using?
Here is a simple example, which I created in RB 6.03.
http://www.digital-metaphors.com/tips/ReplacePreviewF… -
Actually, just delete the FBtnCancel from the code:)
Cheers,
Jim Bennett
Digital Metaphors
-
You'll need to make a custom previewer to do this. This isn't as hard as it
sounds. Copy the TppPreview class and save it as a TmyPreview. Search the
code where FBtnCancel is created, and set it to visible = False. Then you'll
want … -
You aren't doing anything right or wrong, per se, the streaming technology
simply doesn't exist to handle this case, yet:) We recommend never using
two report objects, and then load the same report onto them, if the reports
share the… -
Looks like the ShiftRelativeTo tries to establish a relationship to shift
relative to the subreport in the other report component. Since the template
is loaded onto the same form, it finds the ShiftRelativeTo component on the
form, e… -
What is happening in the event handlers? The report gets the correct data,
but it is rendering incorrectly? Check to make sure that there aren't any
event handlers assigned to the wrong report.
Cheers,
Jim Ben… -
Set the Memo.Region property to the region component.
ppMemo1.Region := ppRegion1;
Cheers,
Jim Bennett
Digital Metaphors
-
Use a region, and place a couple, or three, lines in the region. Set them to
stretch with parent.
Cheers,
Jim Bennett
Digital Metaphors
-
It is easier than that. You can place the memo in a region component. The
region is able to stretch as the memo inside of it grows. Set the region's
color and be sure that the memo is transparent.
Cheers,
Jim Be… -
You must be recompiling the myChckBox with a different version of the source
than what you are trying to compile the project with. Did you change
RBuilder\Source? Follow the corrupt intall cleanup instructions to search
you machine … -
I see the problem. There just needs to be a check to see if the memo is
about to be printed in the summary band.
procedure TForm1.ppMemo1Print(Sender: TObject);
begin
FMemoPrinted := True;
end;
proce… -
I thought that was the goal? Can you elaborate on the big picture of what
the memo should do?
Cheers,
Jim Bennett
Digital Metaphors
-
Forget about the example code to fix the height. Let the memo stretch
dynamically and all you have to do is use the following two lines of code.
This will fool the engine to do what you want:
procedure TForm1.ppSummaryBand1Afte… -
I added some dynamic height components in the header band, but I don't get
any strange behavior. I added memos, regions and subreport in the header
band. I set them to be visible in the HeaderBand.BeforeGenerate event.
Can you … -
Ok, I'll try it out.
Cheers,
Jim Bennett
Digital Metaphors
-
In which event are you calling the PrintPosRect?
Cheers,
Jim Bennett
Digital Metaphors
-
Please, send all examples to support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
-
Can a TppShape print in this area, while the image cannot? Does the problem
show up on other printers? Does a different image cause the same problem?
Send us a simple working example and we'll run it here.
Cheers,
<… -
There is an unprintable area on the paper that the printer can't physically
print on. Usually it is about 0.25 inches on each side. You'll have to
check your printer driver specifications for the exact unprintable area.
That's proba… -
When you choose to go to the last page in the previewer, all of the pages
should be generated in the report in exactly the same way that they are
generated to any output device. The problem you are experiencing isn't a
known issue. … -
Try setting the Report.CacheManager.CacheType to ppCTFile at runtime.
TppCacheManager.CachePath
Run-time only. You should rarely, if ever, need to set this property.
When
a report is very long (over 1,000 pag…