How to set 'textbox's disable forecolor' ?

  • Thread starter Thread starter Agnes
  • Start date Start date
A

Agnes

my client complaint that "when the textbox is disabled, the forecolor is too
light ".
How can I change it ?
Thanks a lot
 
you can only change this by creating your "own" controls ( wich is pretty
easy with inheritance )
however a workaround might be to use the readonly = true property instead of
the dissabled property

regards

michel posseth
 
You can simulate what you want in a Textbox by setting the backcolor to what
you want, and then setting the Textbox's "ReadOnly" property to true.

ry
 
Back
Top