Conditonal formatting

E

Erik

Hi..

Is it possible to change the grey colour when deactivating in condionial formatting

Erik
 
W

Wayne Morgan

Graying out an inactive control is standard Windows behavior. You may want
to check the Locked property and how it acts when combined with the Enabled
property to see if you can get what you want.

Enabled = Yes
Locked = No, this will give a normal control.

Enabled = No
Locked = No, this will give a grayed out control

Enabled = Yes
Locked = Yes, this will give a normal looking control that you can click
into and can copy and paste from, but can't changed by user entry.

Enabled = No
Locked = Yes, this will give a normal looking control, but you can't even
click into it.

The control can be changed via code at anytime. Color changes will be
difficult to see in a grayed out control.
 

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