rbuser
Comments
-
That is excellent news.
If you need anybody to test the new version on, give me a shout.
Look forward to 6.5
Thanks
Tony
-
I am using D5Pro Pack 1, RB 6.03 Standard
-
Ooops!
Thanks
Steve Everington
-
Hi Steve,
should be
HTH,
Chris Ueberall;
-
Hi,
The column 'deleted' from rb_item allows nulls.
I'm using MSSQL7.
I still get the message :'Field 'deleted' must have a value'.
Thanks,
Ana
-
Hi Ana,
I guess 'rbItem.Deleted' was defined with the option 'NOT NULL', you have to
remove this column option.
If your problem persists, please tell us what database you are using.
regards,
Chris Ueberall;
… -
Jada,
please see Guillermo's answer, he used the right syntax for Delphi, mine was
for RAP.
regards,
Chris Ueberall;
-
Hi Jada,
you don't have to call an event, you have to assign an event handler for it.
myDBText.OnGetText := myDBTextOnGetText;
define the event handler as follows
procedure myDBTextOnGetText(var Text : Str… -
Thank You for such quick replies.
-
1. Create a procedure with the same parameters that the expected for the event
procedure MyGetTextProc(Sender: TObject; var Text: String);
begin
....
Text := YourValue;
end;
2. Assign that procedure… -
I see...
Thanks, Chris.
I should have been aware of that: I've fallen foul of the template business
before - and I still can't get it through my thick head that loading a
template can (and does) wipe out a load of design time set… -
Hi Peter,
you have to re-assign the event after you loaded the report. No anomaly, the
one report was saved having the event assigned, the other one not.
HTH,
Chris Ueberall;
-
I have Delphi 6 Enterprise and RB 6.03 Enterprise.
Here's another 'funny'.
I have a very simple test app which loads one of two reports. The reports
take the form of binary templates.
I have a couple of lines in the TppRepo… -
Many thanks!
But why doesn't it work as expected using the published property?
-Pete
"Alexander Kramnik (Digital Metaphors)" wrote
-
Thanks a lot Alex
My report is looking good now, Only thing I could not get it to work is
display the entire record on a page, I moved all the detail components into
a region with keeptogether = True but does not work at all.
I dont add the item manually, the memo displays a value from a string field,
so the string field can contain just 1 character or 5000 characters,I can't
assign a space for 5000 characters on the height of the detail band cause
not all…Thanks, much more elegant than my record copy kludge!
"Alexander Kramnik (Digital Metaphors)" wrote
Thanks Chris, Got it to work now.
Mike
Hi Mike,
TppTemplate.OnLoadStart must be of type 'TppStreamEvent', not
'TNotifyEvent'.
TppStreamEvent = procedure(Sender: TObject; aStream: TStream) of object;
HTH,
Chris Ueberall;
I have found something in your Tech -Tips that describes how to do this. I
tried following this code but get an error when I compile.
In the Private section:
procedure ReportTemplateOnLoadStart(Sender: TObject);
In t…Greetings Alexander,
You stated: "To do the check programmatically you can use the
Report.Template.OnLoadStart event to
check the template name and directory." I do dot see any event with this
name on the TppReport compone…That is the correct advide when the DataSet's RecordCount = 0, but there ARE
records in my dataset, I'm just skipping through them, with the
"NoDetailOnSkipRecords.zip" demo. My group header and footer are still
printed in the case w…The problem I'm still having is when no records should be returned in the
report, it still prints out the last record in the dataset. I've followed
along with the demo at:
in Skipping Detail Records Comment by rbuser July 2002aaa
aa
This is a multi-part message in MIME format.
I just tested with D5 in 6.03 and while I got alot of complaints about no
ppCalc the declaration line just magically disappeared and allowed me to
compile again. Anyway, looks like the AV is gone. If I decide to do this
update is th…Hi,
Thanks for the response. Will that require viewing and resaving all our
stored reports? I think that was the reason we had stopped at the 3.52
version. If that's the case perhaps it's time to update that application to
One way is to create the labels in a Region. This way you only have to set
the Region's band property to the report's headerband to move it.
This works for me.
HTH,
Vikram