TextBox

zy_abc

Regular
Joined
May 2, 2003
Messages
67
When the textbox is disabled, the textbox background color gets grayed out and the text in the textbox is dull. Is there anyway to make the text look bold so that the end user can view it properly,

Thanks.
 
Besides using the readonly property you can change the style, font and size of the font used in the textbox using the following code

Visual Basic:
TextBox1.Font = New Font("Tahoma",8,FontStyle.Bold)

Hope this helps you out :D
 
Back
Top