hiding object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

if i want to have an invisible label show up under certain conditions...how
do i do it? I tried writing code but I'm doing something wrong. Please help.
 
if i want to have an invisible label show up under certain conditions...how
do i do it? I tried writing code but I'm doing something wrong. Please help.

What determines when it becomes visible or not?
In the Format event of whatever report section the label is in:
[LabelName].Visible = [SomeControl] = SomeCriteria
 
It's a chech box...if it is no...then i want not pursusing label to show, and
if it is yes....I want pursuing label to show.

fredg said:
if i want to have an invisible label show up under certain conditions...how
do i do it? I tried writing code but I'm doing something wrong. Please help.

What determines when it becomes visible or not?
In the Format event of whatever report section the label is in:
[LabelName].Visible = [SomeControl] = SomeCriteria
 
Nevermind..I got it. Thank you so much

fredg said:
if i want to have an invisible label show up under certain conditions...how
do i do it? I tried writing code but I'm doing something wrong. Please help.

What determines when it becomes visible or not?
In the Format event of whatever report section the label is in:
[LabelName].Visible = [SomeControl] = SomeCriteria
 
Back
Top