rbuser
Comments
-
Hi again,
I installed the 7 trial and it behaves exactly the same. In examining the
problem I am able to reproduce it:
1. Epson Dot Matrix
2. Star Dot Matrix (a4)
3. Star Dot Matrix (a3)
4. HP Laserjet 1100<… -
Hi Nico,
Thanks for suggestion.
I tried printing the same report from windows 2000 and it works good.
I couldn't reproduce the same problem.
Also instead of EPSON DFX-8000 I tried printing with EPSON DFX-5000 dr… -
Thanks for reply.
Actually I did thought I should report as new message.
But I thought may be this was linked to earlier problem.
Next time I will do as suggested by you.
Actually I am seeing full page in the report p… -
Hi Again,
Well I have this creeping problem fixed by using the method I mentioned
earlier.
But I am having a new problem now.
The report started to print only left half of the page.
Now this what I series o… -
Thanks for you continuing help.
Here is some thing amazing I found to fix the problem.
If I set the report's PaperHeight property at ppReport component's
BeforePrint event then every thing works fi… -
Again Thanks for quick reply,
I actually tried with millimeters also, but the problem is still there.
I will later try to install 7.03 and see if it works.
I was wondering how does report margin works. If my pre-pri… -
Hi Nico Cizik
Thanks a lot for response.
I really appreciate your detailed explanation.
I will change my report as suggested by you and will inform you as soon has
I have results.
But I am having one doubt … -
ok. Im a another user......... But, following this case. Who can display 1,
2 or 3 totals in the same horizontal line?...
In the last example, i wil remark (in bold) my interest...
Test 1 Test… -
i will send you an picture to support address.
chris
-
Hello Nico,
Thanks for the prompt reply. A couple of questions:
references
below
When you say keep the event handler code local to the report template, does
this mean I have to add the code to every … -
Gorgeous!.
I had to work a little bit on my report but I finally got it working.
Thanks a lot, Nico!
-
This is a multi-part message in MIME format.
-
Thank you for your response. Actually, it turned out that the reader was
programmed to read no less than 4 digits, and our number was '158'...heh.
-
Thanks,
Jon
-
Nico,
Is the round off patch rolled into V7.04?
Jon
-
Nico,
Just a follow-up. If I use a TppVariable, I see that oncalc
passes Value as variant. I'm not overly familiar with rules
regarding variant.
Using:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~… -
Nico,
Thanks.
It
I can see wishing to have the separate task bar entry on Show, but it
creates stange behaviour on ShowModal. Switch or option would be nice also.
It is great having the source code, a… -
I would use a variable and use the OnCalc event:
Value := Query['Column1'] - Query['Column2'];
Regards,
Ace
-
Does this go beyond the pputils patch for 7.03 or is that what you are
talking about?
showing
-
Great news...!
I see you have worked on the graphics part. May I ask if it fixes the black
square problem?
Best regards,
Svein Olav Mytting
"Digital Metaphors" skrev i melding
-
Hi G?nter.
We have had the same problem, and we have developed a solution for this
problem.
I have seen that you speak german. Here is the same in german.
Hallo G?nter.
Wir hatten das gleiche Problem, und h… -
Nico,
And thank you for such a quick turnaround!
--
---------------------------------------
Terry Swiers
Millennium Software, LLC
http://www… -
Nico:
My code is listed below:
Screen.Cursor:=CrHourGlass;
ppReport2.PassSetting:= psTwoPass;
lDevice := TppDevice.Create(fmReport);
lDevice.PageSetting := psLastPage;
lDevice.Publish… -
Nico:
I fail to see how your answer addresses my problem. I know how to find
the subreport band. What I need to do is find the position and text rendered
on that subreport band.
I have identified the subreport… -
PMFJI but I have what I think is exactly the same question.
I'm using RB Pro 6.03 and have a Group Footer Band below a Detail band which
breaks on a variable. I need the Group Footer Band to print just below the
last Detail line… -
My report has region that surround all component in detail band, the detail
band may print several page, I just want on each page, after the last detail
band of each page is printed, there is a line printed below it. From your
post, "… -
I have seen your example but still don't know how to allow the group footer
appear just below the last detail line ON EACH PAGE. I see your group
setting is "start new page" and "reprint group header on subsequent page",
is these nece… -
I spent many time but still can't wirte a line at run-time, my coding is:
procedure TfmSalesOrder_Print_JewelMax.rpSalesOrderStartPage(
Sender: TObject);
var
lDrawLine: TppDrawLine;
begin
inherited;
lDrawLi… -
Why there is error when I write something like
lDrawLine.position := lpTop;
The error message is "Undeclared identifier lpTop"
-
Your method is before ppreport1.print, but I want draw a line after
ppreport1.print, like placed in band.beforeprint, then how to do it?