rbuser
Comments
-
Hi Nard,
Thanks for your reply. Sorry for my remark about not calling
ProcessHyperLink. My err, have to check my own sources first!. In our
derived version of TppDbText.GetTheText that call was missing. Added it and
it w… -
On 2010-05-27 08:55 PM, Nico Cizik (Digital Metaphors) wrote:
The patch doesn't work. I have found a solution:
Add a runtime package vcljpg to requires clause of rbTC1211.dpk:
requires
vcljpg, // add … -
Wow, that was a quick response!
That's great news.
Thanks,
Mike
-
Yes, you can :-)
FYI I have an object, FReportSetup, that persists the settings for the
client. It is in the code snippets below.
For the TppReport object, use the OnPreviewFormCreate and
OnPreviewFormClose. In the… -
> Doing so permantently will require quite a bit of testing, but we'll
Definately. Best wishes
Ed Dressel
-
Thanks, Ed.
We'll give it a shot and see what happens.
Doing so permantently will require quite a bit of testing, but we'll
definitely look into it.
-
> for i := 0 to MDIChildCount - 1 do
This is similar to what I use to do but I took it over the chin a few times
by other users for calling the .ProcessMessages. I've been told that it is
not a good idea, and removing… -
Besides setting some variables, this is how we close the application:
for i := 0 to MDIChildCount - 1 do
begin
MDIChildren[0].Close;
Application.ProcessMessages;
end;
Currently, we don't cancel the repor… -
> exception message : Control '' has no parent window.
that's not an AV :-)--- but I have always related that exception to using
Dev Express controls (which I use extensively) though I have not seen it in
a while. I have ne… -
We've asked our support department to recreate it and they're able to by
closing the application itself when the report is being generated.
I did as you suggested and looked at the call stack generated by
madException (see bel… -
> Is there a clean way of preventing or handling this exception?
I have cancelled reports during generation and not received an AV.
Do you at least have a call stack? (It may or may not provide clues).
Ed Dressel… -
Thanks Nic,
Now compiles fine.
Cheers, Luke
-
Hi Nard,
another question:
how do i delete rap code assigned on the for example BeforePrint of a
GroupFooter?
tia,
marc
-
thx!
it had to be something simple
-
Hi Nico !
Hmmm :
01.06.2010 17:26:13.407 PrintPRN : Start Report.Print...
01.06.2010 17:47:38.377 PrintPRN : End Report.Print...
...
...
01.06.2010 20:47:05.019 DoReport2 : Cleaning template...
01.06.20… -
Thanks Nico
Mike
-
Nico
I can see why the data is not being sorted correctly. Adding two sub
reports to the detail band of the main report gives both sub reports a
ReportSaveNo of 1.
The line that does this is in ppCtrls
… -
i have to cause when you create a new region, this region gets an empty Name
property
if you do the same with a tppmemo, this memo gets a dummy name...
additionally, UserName is the only way to be able to change a customized
?
Thanks Nard, this is just the kind of thing I am looking for.
Craig Vespe
--- posted by geoForum on http://www.newswhat.com
Ed ~
Sorry about the full name business. When I first signed up the
instructions were in Italian, and I might have missed that.
The printers will all have 40-column continuous formats.?
Craig Vespe
-…CraigV:
Please use your full name when posting (per guidelines)
Do the printers have different page sizes? If so, then you will either need
to create one for each different size or develop code to do it for you
(whi…Hi Toni!
In article , Toni
Hi,
had the same troubles but with other VCL-components. This is due to a
small sizing in registry concerning GDI-handles. Just put the following
lines into a .reg-file and install it on the workstation.
Windows R…In article <4c0923b1@mail.>, Nard Moseley (Digital Metaphors) wrote:
We are using FastMM and don't detect any significant Leaks (just the one from
Indy)
It is also coming when he starts the application and mak…Hi Nico Cizik,
Thanks for the reply.
But not able to find the bottom of the last detail band.
Is there any way to locate the bottom position of the last detail band on
the page?
"Luke" wrote in message news:4c16b10c@mail....
I tried the OnPrint event and it works fine for DBCalc components but just
realised its not working for DBText components.
So now im going through every report now and checking th…Thanks Nard,
I will try the onPrint event and see if that helps any.
Cheers,
Luke.
>Setting the FMessage.ContentType :=
Thank you Nico.
To replicate the behavior I'm getting, I modified the
"\RBuilder\demos\Demos\3. EndUser\1. Report Explorer" demo as follows:
1) Cleared property: ppDesigner1.DataSettings.DataDictionary
2) Set property to false: ppDesigner1.D…I dropped a TSQLConnection on the main form and use that instead of creating
one on the fly and connect it to Designer.DataSettings.DatabaseName (=
SQLConnection1).
Create new Report, run the Report Wizard, I can see the data on the…