rbuser
Comments
-
Nico Cizik (Digital Metaphors) wrote:
Hi Nico,
And this string is stored as it was supplied at the time of report
creation?
If so, then I might do well to override the method that you mentioned
earlier an… -
> 1. User entry
Hmmm... well this is a bit of a problem. I'm trying to work with
criteria in code. I need to know the default date value for a report
criterion in YYYY-MM-DD format.
However, the value that I'm ge… -
Cheers Nico, looks like exactly what I'm after. So, just to make sure
I've got this right, if I'm modifying Criteria values via the TdaSQL
object (which I am), I should EITHER
1. Provide date values using the default date format cor… -
Ok, I think I've finally cracked it. I had assigned a handler to the
designer OnCreateReport event. I did this so I could initialise the designer
form caption to 'New report' when choosing 'new report' or the report wizard
from the de… -
Nico,
I don't have a data pipeline component: I'm surfacing the DADE tab and
creating a pipeline with a query. The report wizard 'sees' that pipeline OK.
Once the wizard has closed and left me in the designer (completely empty a… -
I've moved all the RB components to a form, though not the application's
mainform. I've reinstalled RB. I've deleted the components and re-added them
(well, ppReport and ppDesigner at least) but I still cannot make the report
wizard p… -
I should also add that all the RB components in my project are in a data
module. I notice the design-time designer has a notice about having 'issues'
in a data-module. Could my problem be related?
--
Charles
-
Another project (the end user reporting example but slightly modified) is
working just fine (I just compiled it), so I don't suspect the installation.
--
Charles
-
I've just found that the label wizard doesn't do anything on completion
either - no changes to the page layout, columns, etc.
-
Perfect - Thanks Nico!
-
Hi Nico,
I don't see any such event. Are you sure that such an event exists in RAP?
Best Regards,
James Crosswell
Software Engineer
Microforge.net Limited
in Re: Parameters for user specific reports Comment by rbuser May 2003 -
> I did receive an error. However, we submit this directly to the server, so
tried
Okay we forgot to tell Oracle 8i and BDE 5.11 with vendorinit sqlora32.
But first concatonation between strings does not work with the plus signe
>
Yes but what happens, if the last concatination is only a string constant?
So please do not concatenat to database fields
Please try Employee.FirstName || ' hallo World'
Drop Table Demo_For_You;
CREATE TABLE Demo_For_You (
sName VARCHAR2(20) NOT NULL
);
INSERT INTO Demo_For_You(sName) VALUES ('Jim Bennett');
INSERT INTO Demo_For_You(sName) VALUES ('Helmut Auffinger…James,
I second your suggestion and in addition I vote for buying 3rd Party components always with source!
BTW, there are a lot of Delphi constants you won't find in the helpfile.
regards,
Chris Ueberall;
> 'ppTypes' was my first thought but it was a wrong assumption.
Me too.
Cheers Chris... again, I'd like to make the suggestion that information
like this be placed in the help files somewhere (constants and which…Hi James,
'ppTypes' was my first thought but it was a wrong assumption.
'itAllFolders' is declared in unit 'ppRptExpCommon'.
regards,
Chris Ueberall;
Chris,
*now* the beer is your?s.
Thanks
Bernd
Bernd,
add 'ppChrtUI' to the uses clause.
HTH,
Chris Ueberall;
Well, sorry, I just checked and found that 'ppCTDsgn' is already in the
use-clause.
Hm, no word about the beer, but do have another idea?
Bernd
Bernd,
thanks, I'll enjoy it!
Cheers,
Chris Ueberall;
Magic Chris,
my answer is "no" and I owe you a beer...
Bernd
Hi Bernd,
do you have 'ppCTDsgn' in your uses clause?
HTH,
Chris Ueberall;
i am looking for that, but only with teh methods of the enduser designer.
In the examples, i have to know the creteria [0..n] in wich the user puts in
a date selection.
Is there not a better suport in the value field of the data-tab, …Jim
Have you or anyone at DM got a multi page sample rtm you can send, linked to
the demos (advantage prefered).
I only need data on the first page, then the rest is just richext over three
pages.
Thanks
And…As soon as a footer is added to any page it just prints thousands of pages.
Andy
I suppose that rules any page numbering information then ?
Thanks
Andy
Hi This is now working ok except for one thing, If the footer is added to
the first page it only appears on the first page and not on each sub report.
I assume we have to add it each report ?
Thanks
Andy
Hi Jim
Should the first page be in the detail band and then all the sub reports in
the same band. This works until I try and put a footer with some text, then
it prints thousands of pages. I also tried putting the subreports i…I finally found exactly what I was searching for : the OnCreateDialog
template event (not documented).
here is what I've done, and it works as I want...
procedure TForm1.MyCreateDialog(Sender, dialog: TObject);
begin
…