Command Buttons on Continuous Forms

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

Guest

I have a form with a command button that's visible property is determined by a Yes/No field, and this works fine when the form is set to single form. I have this being done on the form's OnCurrent event. When I set the form to continuous forms, the visible property affects all records instead of just the current record. I would like to be able have the buttons visible property work on only the current record but on continuous forms. Any suggestions?
 
Unbound controls do not work well on continuous forms. The
best way to think of them is multiple instances of the same
object. So, unfortunately, one visible - all visible.

Hope This Helps
Gerald Stanley MCSD
-----Original Message-----
I have a form with a command button that's visible
property is determined by a Yes/No field, and this works
fine when the form is set to single form. I have this
being done on the form's OnCurrent event. When I set the
form to continuous forms, the visible property affects all
records instead of just the current record. I would like
to be able have the buttons visible property work on only
the current record but on continuous forms. Any suggestions?
 

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