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,
I think you mean (still visible but DISabled).

YourButtonName.Enabled = False
--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
There are 10 types of people in the world.
Those who understand binary, and those who don't.
 
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
 

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