George Avery
2011-06-15 12:51:58 UTC
Hello all,
I\'d appreciate any pointers to the best way to resolve my issue.
I have a form which display additional controls only when one of the
controls contains a certain value. I used -
If Me.Control_Name = \"Certain Value\" Then
Me.Other_Control.Visible = True
etc.
etc.
Else
Me.Other_Control.Visible = False
etc.
etc.
End If
It worked great until my users wanted to view multiple records
simultaneously. I changed to a continuous form and now if any one of the
records display the value that causes the additional ones to appear, then
all the records display the additional controls.
I can see why this is as it\'s a single form but I wonder if there is an
easy way to display the additional stuff only on those records where it\'s
needed.
t.i.a. - GA
I\'d appreciate any pointers to the best way to resolve my issue.
I have a form which display additional controls only when one of the
controls contains a certain value. I used -
If Me.Control_Name = \"Certain Value\" Then
Me.Other_Control.Visible = True
etc.
etc.
Else
Me.Other_Control.Visible = False
etc.
etc.
End If
It worked great until my users wanted to view multiple records
simultaneously. I changed to a continuous form and now if any one of the
records display the value that causes the additional ones to appear, then
all the records display the additional controls.
I can see why this is as it\'s a single form but I wonder if there is an
easy way to display the additional stuff only on those records where it\'s
needed.
t.i.a. - GA