rbuser
Comments
-
and the same if I assign a OnSaveStart event to FReport.Template : this
event never fires...
-
I use your demo code to create a template :
lWizard := TppLabelTemplateWizard.Create(Self);
lWizard.OnCreateReport := CreateReportEvent;
if Assigned(FReport) then
begin
FReport.Free;
FReport := nil;<… -
thanks Jim but I've already set this property to True.
it allows to save .rtm file on disk, but my questions are :
- how to make the "save to" dialog box open on a specific folder ?
- how to set the default .RTM file name to a specifi… -
thanks Jim for your answer, but it seems, if I understood help about this,
that it does not allows me to save my reports as simple Windows .RTM files,
but in databases (?)
What I would like to do is just initialize the folder of Save … -
I would also be able to initialize the name of the report itself...
Thanks
-
James Crosswell wrote:
so of course I get an error??? No idea
I tell a lie - I had an error in the code for the ISAPI. The method that
you suggested works perfectly. Thanks Chris!
Best Regards,
James Cro… -
Chris Ueberall [TeamDM] wrote:
Hmmm - well I tried this. I have two applications using this data
module, one is a window application (that I'm using to design the
reports) and which only ever has one instance or the datamodule… -
Hi James,
my solution was to pass the report itself always as first parameter.
HTH,
Chris Ueberall;
-
Thanks Jim
I think that's a good idea, but I think time constraints would prevent me
from
tackling that at this stage - is there any chance DM will do it?
I think what I need to do in the near future is get the RB des… -
Hi Jim
Thats why I posted it here. I develop a lot of complex (many fields)
end-user reports and find it quite cumbersome to do this in the end-user
designer. I haven't tried it yet, but I'm assuming I could do these in the
Stacey R. Brodsky wrote:
You could actually add the autosearchfield using rap... and set it's
value at the same time... wouldn't that be easier?
I built a couple of RAP functions for my app that get values from my app
If I am creating the search criteria on Create of the report, then there is
no 'autosearch' checkbox, because there is no search criteria yet.
Is there a way to set a field...say 'MEMBER_JOIN_DATE' in the end-user
search criteri…That worked great. Thank you.
"Jim Bennett (Digital Metaphors)" wrote in
Hi Moisey,
try the following tech-tip ...
http://www.digital-metaphors.com/tips/ReportExplorerAsMDIChild.zip
regards,
Chr…Oh, I found the answer in the tech-tips already.
I finally figured it out.
Don't know why but the reason was in LIST SYNONYMS = ALL in Definition of my
Database
As soon as I switched it to LIST SYNONYMS = NONE everything started to work
fine. (Although it still returns all syst…Thanks a lot, that realy helped.
Thanks Jim
I was looking at a more user friendly solution. We are trying to replace QR
as a report writer the user must be able to alter the reports.
When I tried with the report placing the disclaimer message in the foote…If the text I am printing is of variable length how do I set PrintPosition
so that the Summary is in the same place at the bottom of the page? Would I
need RAP to calculate where the text finished printing and how many report
units it…I forgot to add that I am using RB 6.03 and Delphi 5.
It doesn't for me - right click doesnt give any popup at run-time - I will
ask my boss to upgrade because I see I'm still working with the 6.02 release
Thanks a lot for you help !
My problem is to edit at run time in the designer - some tpprichtext
component established at design time.
What I imagine is to double click on the rich text to obtain the rich text
editor ... for make…I have 6.03 and i change the text of tppRichText.
Abrito
This is a bit off-topic, but:
we created a autosearch-dialog wich presents the end user a date-time
picker, if the field is of type date. Wouldn?t it be nice for DM to assembla
a collection of such snippets?
Bernd
I can?t download from this link.
Bernd
Ok, thanks for the help.
Thank you,
I'm looking forward for an exampe.
Also I would like to note that SQL parsing is a very hard task.
Let's see about Oracle conventions. First of all WHERE clause might not be
presented in the query at all. Then we…TppReport has publlished property "PreviewFormSettings" which allows you to
manipulate preview window size through WindowState,ZoomPercentage and
ZoomSetting. That should be enough.
In your case:
with ppReport1 do begin
Hi Kongthap,
--------------------------------------------
Article: Troubleshooting Lost Event Handlers
--------------------------------------------
Let's assume you have created a report in Delphi and assign an …