Setting label visibility in detail section through RAP...
Hi,
In my detail section there is a label with name and a dbtext with value.
When dbtext contains an empty string I need to hide label with name.
The problem is that when I'm hiding the label - the label hides for all
records in details, not only for the one with empty dbtext.
The question is how to make label with name hide only for chosen records in
detail section?
Thanks,
MB.
In my detail section there is a label with name and a dbtext with value.
When dbtext contains an empty string I need to hide label with name.
The problem is that when I'm hiding the label - the label hides for all
records in details, not only for the one with empty dbtext.
The question is how to make label with name hide only for chosen records in
detail section?
Thanks,
MB.
This discussion has been closed.
Comments
event.
if (Datapipeline['SomeField'] = SomeValue)
ppLabel1.Visible := false
else
ppLabel1.Visible := true;
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com