rbuser
Comments
-
Chris
I tried that. Its still not refreshing the text with the new values from
the second pass.
John
-
Hi John,
I think you better use the 'OnCalc' event.
regards,
Chris Ueberall;
-
Hi Jorge,
see 'RBuilder\Demos\1. Reports\Demo.dpr' example 112.
HTH,
Chris Ueberall;
-
Hi again.
I have tried what you have wrote, but it seem that it does not work, maybe I
have done something wrond. If I ask you nicely parhaps you could send me an
exemple in code that I could implementat.
Thanks
… -
I have also checked the output of "GetAutoSearchDescriptionLines" and
everything is fine...
Thomas
"Jim Bennett (Digital Metaphors)" schrieb:
--
____________________________________… -
Hello Jim
thanks for your answer. I had a look at the demos and I could not find sth
different
to my implementation. If I run my report without setting any filter, it is fine.
If I set the filter
manually in the "data"… -
I have now tried it here and it still fails to call the event. It's a
standard TNotifyEvent so I can't see why it would get called this way. Is it
actually possible to wire up an event this way as maybe the getsubreports
doesn't actua… -
Hi Taticus,
-------------------------------
Additional Formats Available
-------------------------------
Once installed, these products enable reports to be
saved to additional formats at design-time and run-tim… -
"Taticus" wrote in message
-
"Jon Gray" wrote in message news:3d482047$1@dm500....
version?
The info on the website is at http://www.digital-metaphors.com/server/.
Not yet.Hi, I found the offending tag to be:
\protect\f1\fs20
Do you know what this tag is? When I remove it the notes display correctly.
Some type of copy/read-only protection?
Yes!
look for the crosstab component
cu
marc
For completeness. The problem of centered labels vanishing off the right
hand side of the paper turned out not to be a printer problem. I finally
discovered that it was caused by setting the color of the font in the
report.beforeprint…Yes, I know that preview does not look exactly like printout, but the
problems I experienced were that the paper output did not look like it
should (and does on other printers). For example centered labels vanishing
off the right of t…Alexander,
I managed to do what I wanted by using a DBMemo component linked to a normal
"character" field.
Memos can be configured to be streched and if the character-field is empty,
then it has a height of 0.
St…Sorry I?d forgot it .
Here?s the exception.
Access Violation at address 02AD1052 in module rbRCL55.bpl. Read of address
000000008. Ignore the error and continue ? NOTE: Ignoring the error may
cause components to be deleted or pro…jorge,
it will most prabably be a page setting problem
try to play with the margins to see if that cures the problem
label printers are not the same as normal page printers
also try to use the printer driver fonts as this will re…Hi David,
here some code published by Alexander Kramnik (Digital-Metaphors) for a
similar problem:
If you actually want to write a conversion utility you can simply iterate
through your reports and then iterate …Cheers, works really well.
Yes you can. Just iterate through the Report bands and then for each band
iterate through the report objects. Check to see if that object type is what
you want and you have it.
For Idx :=0 To Pred(ppReport1.BandCount) Do
Begin
That the best kind of answer. Short, makes sense, solves problem & fast.
Thank You,
Rick Vlahov
> Is there much of a performance penalty here, or should I use a flag to
You'll have to test your scenario and your code--there are too many
variables here. I could write code that wouldn't work and have written code
that wor…Thanks .
"Alexander Kramnik (Digital Metaphors)" ha
I have it working I did not need to use the AddObject at all.
Thanks, I had looked at the sample in the dev guide and set the band, but no
luck.
"Tom" wrote in message news:3d499f12@dm500....
My initial guess is that you haven't set the Band property of the memo
control, but it's just a guess. You might want to look at the example of
creating a report in code in the Re…Great, many thanks for the tip Tom. This should save me loads of hassle!
Cheers,
Tom Munro Glass
Yeah thats right, just sit the Common Report on its own form and assign the
header as you need it, load the template first then assign, this will add it
so you will still have the exisiting header as well, which can be usefull to
stor…So do you mean you have two TppReport components on your form, i.e.
MyRealReport and CommonReport. Then after MyRealReport.Template.LoadFromFile
you do somthing like MyRealReport.Header.Assign(CommonReport.Header);
Presumably in…What I have done in the past is create a report that is just a common
header, then when you are loading your other report assign the header of the
"common header report" to it. And do the same for the footer.