How do I change format of text fields when enable=false?

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

Guest

I have many disabled text fields on my forms. They work fine and don't let
the cursor in, but they are very hard to read. How can I change the
foreground and background properties of my diabled text fields?

Thanks much!
 
You are probably using the Enabled property of the text box set to No. This
greys the control out and makes it hard to read. Instead, use the Locked
property set to Yes. The control appears normal, but cannot be changed. The
only difference is that the Tab will position the cursor in the text box. If
you want the Tab to bypass the control, set the Tab property to No.
 
Alternatively, set BOTH.properties.
Set Enabled to False (No)
Set Locked to True (Yes)
 
I believe I covered that, but not as explicitly as you did:

Instead, use the Locked
property set to Yes
 
Back
Top