rbuser
Comments
-
Ok, I see what has to be done.
Thanks,
Bob Tucker
-
I don't use the auto search dialog. I prompt for everything in my own
dialog and then pass the auto search criteria to the report.
However, I don't see how to create the OR using the
CreateAutoSearchCriteria. The function take… -
Hello Nico
I have found something slightly weird.
If we have already created the ppReport component, and then add a printer as
described earlier, and then ppPrinters.refresh, our new printer is indeed
there. IndexOf(M… -
Hi Nico
The solution is now fully implemented and seems to work well using
AddPrinterConnection and ppPrinters.Refresh
Thank you for your prompt reply - it is appreciated.
Regards
Clive
-
That was the piece of information I needed. Works find now.
Thanks,
Bob Tucker
-
I see where the Sender in OnCustomSaveDoc is the ppReport. However, I do
not understand how to determine if the user selected Save, Save As, or Save
To File. Since the OnCustomSaveDoc event takes over for each of these, I
need to kn… -
Sent the mail, received the component, set it up in about 15 minutes and
it's working great!!!!!! (together with ppArchiveReader)
Thanks again.
-
Thanks Nico for your fast answer. One more follow-up question:
There are a lot of calculations on data necessary for each report. Is it
possible to do the following:
- Let the original report be created (but not printed)… -
Thanks Nico. It does work - heck of a fiddle though to squeeze the region
small enough to allow the header grid to touch the detail grid. It is a pity
you can't insert header regions, like you insert group headers. Is this on
the ca… -
I'll try it, but is that not a bit complicated for what must be a really
common task? I always have spacing/alignment problems with TppRegion - I'll
probably end up with a gap at the top of the grid! In CR I'd just add a
header region… -
I have experienced this problem at runtime.
I try an experiment with your EndUser demo.
-
I have noted that if, before I load the second report, I save the first, the
past function normally.
Then to copy/paste controls from a report to another I must:
- open first report
- select controls
- Edit->copy
- F… -
Thanks but I think there is a bug in reportbuilder 7.3 for delphi 5:
in the designer I open a report, select some controls and then Edit->Copy.
Now I open another file but the Edit->Paste isnt enabled.
If I repeat 2 or 3 times: … -
On Fri, 17 Oct 2003 14:48:51 -0600, Nard Moseley (Digital Metaphors) wrote:
That makes me think about a problem i have and I still didn't find the
solution.
I want to provide my users some reports and give them the a… -
On Wed, 15 Oct 2003 09:29:34 -0600, Nico Cizik (Digital Metaphors) wrote:
But you could inherit a reportexactly as you would with QuickReport.
Digital Metaphors say that they don't support it but it works pretty good
for m… -
After taking a closer look I was able to resolve this. The code sample on
getting the sql lines was helpful in getting to the components I needed to
check.
Thanks,
Bob
-
Will check it out.
Thanks,
Bob
-
Yes I am loading templates and I did find the answer to this one thanks for
the reply!
David
-
Well I figured it out. I just made a copy of the ppPrvDlg form and renamed
it, added the createparams function and re-registered it under my new name
and that did the trick.
David
-
I recently went to RBuilder and implemented the Data Dictionary very easily.
In fact, if you are using SQL as the database engine, you can simply query
the sysobjects table for the desired tables and fields. You don't even have
to se… -
Nico,
Thanks,
We haven't started utilizing the Data Dictionary yet, and I wasn't aware
that it also kept track of what tables to make available (thought it to be
only on field level). I was planning to modify daDOA.pas to o… -
I have looked at the sample code and tried to implement it without success.
If the program creates an auto search field on MyDate field and the MyDate
field does not exist in the dataset being queried, it still shows up in the
autosea… -
On what event do you suggest I run this? I suppost I can just run before I
ever print / view the report?
I am running a procedure that clears all autosearch fields.
Then, based on user parameters entered in a screen, I create a… -
Well I finally found the problem. I was not clearing the BreakName field.
Once I did that everything started working correctly.
Thanks
David
-
I tried that too and it didn't work either. I can't do the reset from
inside the report template, I tried that and it gave me a compile error.
Any other suggestions?
David
-
Well I tried calling the Report.Reset just before the Report.Print line and
that didn't seem to work.
David
-
That code is being run from the Report.BeforePrint event in the report
template.
Can I call the Report.Reset just before the Report.Print line?
David
-
I have found the cause of the problem. It has to do with the label
autosizing itself.
I have attached an example of what it is doing.
Complile the example and then type in a long string of text in the edit box.
Then type in a sh… -
Back at ya! It looks like labels can't move in the Title Band.
-
Actually the code is almost exactly the same as what I put in my earlier
post. Just with my names for the components.
This is the name of the procedure that the IDE generated for the
OnBeforePrint event
other than that the…