GDI........... textbox

  • Thread starter Thread starter Supra
  • Start date Start date
S

Supra

How do i get highlight off when the form is loaded. I don't textbox
be hightleighted.
ne ideas u can give me an hint?

Dim txthelp As New TextBox
With txthelp
.Parent = Me
.Dock = DockStyle.Fill
.WordWrap = True
.Multiline = True
.ScrollBars = ScrollBars.Vertical
end with
regards,
 
* Supra said:
How do i get highlight off when the form is loaded. I don't textbox
be hightleighted.

What do you mean by highlighted? Assign a 'TabIndex' to the textbox
that so that it is not the first control that receives focus after the
form is shown.
 
Back
Top