VB.net feature

Mushhood

Newcomer
Joined
Jul 14, 2003
Messages
2
Hi,

I want to display a string that is highlighted by default. Is there any feature in VB.net that facilitates this?

I have a "change font" button that will edit the font size, style etc of this highlighted text. I do not wish to allow the user to type anything else into this text box.

Any ideaS??
 
Visual Basic:
Textbox1.ReadOnly = True
Textbox1.SelectAll

Will that do it? The user will still be able to deselect the text, and select some or all of the text.
 
What if i'm using a DHTML editor?

My component's name is AxDHTMLEdit1, this is where the text appears and this is where i want to display the text highlighted....
 
Back
Top