vote up 0 vote down star

Hello I am having a problem changing the text color of a textbox in vb I know that changing is like this

Textbox.ForeColor = Color.Red

when I do this it doesn't change anything still gives me the same black color . Also can it be because it in read only or is there some wrong with visual studio or My project

Edit: I am using VB 9 or VB 2008 w/ VS 2008 Express

flag

25% accept rate
vb6? vb.net? I tried it using VBA and it seems to be working. Not sure, why that should not work in vb6/vb.net? – shahkalpesh Jul 25 at 6:29
I am using VB 9 or VB 2008 – Ender Jul 25 at 6:53

3 Answers

vote up 0 vote down

Go to propeties of text box find something called back color and you can change the color

link|flag
vote up 1 vote down

It will work if you change the color and then reassign the text.

dim s as string
s = TextBox1.Text
TextBox1.ForeColor = Color.AliceBlue
TextBox1.Text = s
link|flag
vote up 1 vote down

Unfortunately I don't think you can easily change the colours on a read-only textbox. There are some workarounds but they're a bit hacky.

link|flag
Jon: Could this be a bug? I mean, in VB6 and other form based frameworks prior to .net - the expectation was met & it is not the case with .net framework. Your thoughts? – shahkalpesh Jul 25 at 7:25
Are you absolutely sure that it works with VB6? As I understood it, this is an issue with the Win32 textbox control. I haven't done any Win32 work for a long time though... – Jon Skeet Jul 25 at 8:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.