Apr 11, 2001 #1 INFORMAT Programmer Jan 3, 2001 121 BE Hi, I have a little lay-out problem: when I disable my combobox, the text in it is not readable. Is there a way to display it more readable? I tried to set the disabled foreground/background color but it doesn't work at all! Can anyone help me?
Hi, I have a little lay-out problem: when I disable my combobox, the text in it is not readable. Is there a way to display it more readable? I tried to set the disabled foreground/background color but it doesn't work at all! Can anyone help me?
Apr 11, 2001 #2 GrigoreDolghin Programmer Oct 23, 2000 167 RO Hello. Set the combo to be read-only. Hope this helps Grigore Dolghin Class Software Bucharest, Romania Upvote 0 Downvote
Hello. Set the combo to be read-only. Hope this helps Grigore Dolghin Class Software Bucharest, Romania
Apr 11, 2001 #3 fluteplr Programmer Oct 23, 2000 1,599 US set the disabled back color to 0 Upvote 0 Downvote
Apr 11, 2001 #4 ramani Programmer Mar 15, 2001 4,336 AE In the Init Event of the FORM put the following code This.SetAll("DisabledBackColor",RGB(255,255,192),"TextBox" This.SetAll("DisabledBackColor",RGB(255,255,192),"ComboBox" This.SetAll("DisabledBackColor",RGB(255,255,192),"EditBox" This could fix your problem. You can choose a suitable RGB to your choice. ramani :-9 (Subramanian.G) FoxAcc ramani_g@yahoo.com Upvote 0 Downvote
In the Init Event of the FORM put the following code This.SetAll("DisabledBackColor",RGB(255,255,192),"TextBox" This.SetAll("DisabledBackColor",RGB(255,255,192),"ComboBox" This.SetAll("DisabledBackColor",RGB(255,255,192),"EditBox" This could fix your problem. You can choose a suitable RGB to your choice. ramani :-9 (Subramanian.G) FoxAcc ramani_g@yahoo.com
Apr 12, 2001 #5 DannC Programmer Apr 5, 2001 75 RO try DisabledItemBackColor, DisabledItemForecolor. Have fun. Upvote 0 Downvote