Dim A Command Button (Access 2003)

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

Guest

I'm pretty sure you can dim a command button (still visible but enabled) but
don't know how to code it. Please help. Thanks.


Chai
 
Chai,

Set the Enabled property:

Me![YourComboBox].Enabled = False

Note that a control cannot be disabled when it has the focus.

Hope that helps.
Sprinks
 
Back
Top