do someone know how i can change the font style or color of particular text in the textbox?
Printable View
do someone know how i can change the font style or color of particular text in the textbox?
This is how to change the font type, size and style for a label, which is handled the same way as a text box now in .NET
Code:lblDescription.Font = New System.Drawing.Font("Times New Roman", 8.0!, FontStyle.Regular)
I'll leave it for you to work out how to change the color of the text in the label above.