ok! here's is my question:
I have a textbox and I would like to have some words
of the text in one color and some other words with a different color..........how can I do this.
Thanks
Printable View
ok! here's is my question:
I have a textbox and I would like to have some words
of the text in one color and some other words with a different color..........how can I do this.
Thanks
...at least not with a textbox, use a richtextbox instead.
crptcblade!
Could you tell me how does the richtextbox work......
just the basic functions for changing the color and adding
the text...please.......
Nevermind! it's quite easy to use it.......thanks
Yup maritxu, purdy easy to use :rolleyes:.
Add text:
RichTextBox1.Text = RichTextBox1.Text & " more text"
Change color:
RichTextBox1.SelColor = vbBlue
Just look in your Object Browser for more.