Visible Control on Continuous Form

  • Thread starter Thread starter Max
  • Start date Start date
M

Max

Acc 2K. Have a Yes/No control (based on a field) on a
continuous form. If the value is Yes, I want another
control (also based on a field) to become visible for that
record ONLY. It becomes visible for all records. I have
the code in the OnCurrent event. Any way around this
problem?
Thanks in advance.
Max
 
No, not directly. Controls on a continuous forms view are actually the same
control for each record; just displayed many times. Thus, what you have on
one record will be there for all the records.

You might be able to use Conditional Formatting to change the background
color of a control that would make it "appear visible" if you change from
the default color of the background to some other color (have no borders on
it, of course) -- but this is limited in capability especially if you want
to make a command button visible, for example. You also can use Conditional
Formatting to enable/disable a control, and this may be another possible
workaround.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top