continuous forms -- setting properties

G

Guest

Hello,

I have a continuous form in which I would like to conditionally set the
properties on a row by row basis. For example, if the status of the record
is "closed", I would like to disable all controls for the record, some of
which are combo boxes. Is there a way to do this when the form first displays?

Thanks for your help
 
A

Allen Browne

You cannot condtionally hide or disable controls on some rows of a
continuous form. It's the entire column, or nothing.

However, the user can only use the controls in the current record. The
others are only paint on the screen. So, you can use Conditional Formatting
to make the other rows *look* disabled, and use the Current event of the
form, or the Enter event of the control to disable it or prevent the user
actually getting in there.
 
G

Guest

Allen,

Thanks for your prompt reply. Your suggestion sounds good. I will give it
a shot.

Thanks
 

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

Top