rbuser
Comments
-
Lauchlan,
when I have such a problem like you had, I always scan the source code,
simply using the full text search of the Windows Explorer helps a lot.
I am glad to hear that you are back on the right track!
regards,… -
> TppItemOptionType is declared in 'ppRptExp.pas', which will be
automatically
Thanks Chris.
That solved it! I was setting the priviliges for adding new reports in my
log in / initialisation section on a seperate f… -
Lauchlan,
TppItemOptionType is declared in 'ppRptExp.pas', which will be automatically
included in your uses clause when dropping a 'TppReportExplorer' on the
form.
I think you must have a corrupt ReportBuilder installation… -
> ReportExplorer.ItemOptions := ReportExplorer.ItemOptions +
It didn't compile. It gave me
"Undeclared identifier: 'TppItemOptionType'"
Thanks,
Lauchlan M.
-
Lauchlan,
try this :
ReportExplorer.ItemOptions := ReportExplorer.ItemOptions +
[TppItemOptionType(1)];
(But don't use it in your real application!)
if you can compile it, you must have anywhere a re-definition… -
> (I assume we are talking about ObjectPascal and not RAP)
I am talking OP, not RAP.
No, I don't.
Thanks,
Lauchlan M.
-
Lauchlan,
(I assume we are talking about ObjectPascal and not RAP)
do you have a variable or a constant defined named 'ioAllowNew'?
I know no other reason, it should normally compile fine.
regards,
Chris Ueberall… -
> > > try this :
If I try to do it with include, it says 'cannot assign to left-hand side'.
Lauchlan M.
-
> > try this :
[ioAllowNew];
Specifically it says 'undeclared identifier ioAllowNew' and 'incompatible
types: tppItemOptionType and integer'
Lauchlan M.
-
> working with a set in Delphi should be basic (see Delphi.hlp not
I did try that, it didn't work.
ok.
Thanks for the suggestion.
Lauchlan M.
-
Hi Lauchlan,
working with a set in Delphi should be basic (see Delphi.hlp not
RBuilder.hlp). How do you set a TFont.Option?
try this :
ReportExplorer.ItemOptions := ReportExplorer.ItemOptions + [ioAllowNew];
You don'… -
If demo 33 doesn't do it for you (it won't work in my application because I
have a list of prompts that I have on the screen/report that are not memo
related). here is another method (requires Enterprise or design time code,
which I h… -
Thanks, Jim I was essentially doing this very thing when you responded.
Looks like I have narrowed down the problem and it is not related to
ReportBuilder. The database driver the target machine is using is barfing
on parameter subs… -
I am using a report on the form. ppDBPipeline1 does exist on the form.
So, in other words:
I have a report that has a pipeline property with a pipeline on the form.
I have a pipeline with a datasource property with a data… -
Hello Alexander,
Thank you!
It seems to work. I still have some Problems, but it looks good.
Navigating through the cached pages is a problem. If I reach the
last page and call Nextpage, the viewer jumps back to page … -
Hello Alexander,
you
sure
I Call "Report.LastPage" and to stop the Report I call "Report.Stop".
That works fine, but after calling "Report.Stop" I can't tell the Report to
continue. The Report has maybe 20 Pages … -
Hi Alexander,
in-between
Thank's. It works. It's nearly what I need.
Is it possible to do something like this:
In Preview I call "Lastpage". The Report starts generating the Pages.
The User presses a … -
"Alexander Kramnik (Digital Metaphors)" wrote
-
> You must specify the file to load from. ie.
I have a filename set up in the design time properties . . . do I need to do
it in runtime as well?
Thanks,
Lauchlan M.
-
> 1. To get the standard header load a predesigned template into the report.
OK, I've seen that. But assuming I want one standard report template to load
on each new report (as the whole report, not just as a subreport band), how<… -
I'm Using SQLAnywhere 6.0.3. With ASADAC from microlap. I've written a
DADA Plugin to access the db. (I had some problems connection to the db
With ADO & BDE)
Regards,
Raf Schandevyl
-
I'm Using ReportBuilder 6.03 Enterprise edition and still get the problem.
RAf
-
Hi Juliana,
We had some similar problem some time ago, but in another context.
Our problem was that windows was out of resources.
You can check the system resources using the resource meter.
Regards,
Wouter Devos… -
Hi
I've added a viewer component to the form, then tried adding labels etc to
the report again, and now it works, even after deleting the viewer component
again.
Please explain!
Regards
Juliana Alberty… -
Jim,
i was planning on using the ppPrinters function wich returns a TppPrinter
but calling this function throws an AV
is this normal behaviour and do i have to work upon a TppPrinter instance?
tia,
marc
-
What version of IBX would work? We can drop back to an older version if
need be.
Also, we tried to use the IBO demo, but it will not build. It comes back
with an error "can't find IBDataset.dcu. When we try to compile the
rbIB… -
Hi Lauchlan,
yes, your 'LoadEndEvent' method should do it, for the case it is assigned to
Report.Template's 'OnLoadEnd' event.
You have to assign the event handler in code (not published).
regards,
Chris Ueberall… -
> because you are using report templates. The events are assigned as stored
in
see
Chris,
in the datamodule class declaration I have
private
{ Private declarations }
procedure LoadEnd… -
Hi Lauchlan,
because you are using report templates. The events are assigned as stored in
the template. After loading a template you have to re-assign all events, see
the 'Templates' section in the tech-tips news group (especial… -
Hi, Alexander.
I found out that it's because of the plugin we're using.
We're using SmartPlugin from Athrasoft, it was fine in Delphi 5 though.
I tried to build normal project (not a plugin) and drop a teechart on
ppreport,…