TextBox LostFocus Event

  • Thread starter Thread starter Bernard Bourée
  • Start date Start date
B

Bernard Bourée

I have some TextBoxes created by code.

I want to write a procedure to handle the lost of focus of any of these
TextBox.

How should I do that ?

Thanks
 
Use AddHandler to add the common lostfocus event handler to all of your
textboxes.

Private Sub txtBoxLostFocusHandler(ByVal sender As Object, _
ByVal e As System.EventArgs)

End Sub

AddHandler TextBox1.LostFocus, AddressOf txtBoxLostFocusHandler
AddHandler TextBox2.LostFocus, AddressOf txtBoxLostFocusHandler
....
....

Also, if you are using the same lost focus event handler for all of the
textboxes on your form (or some other container such as a panel, tab page,
etc), you can do this within a loop:

' replace Me with whatever container you have your controls on
For Each txtBox As TextBox In Me.Controls
AddHandler txtBox.LostFocus, AddressOf txtBoxLostFocusHandler
Next txtBox


hope that helps..
Imran.
 
Bernard Bourée said:
I have some TextBoxes created by code.

I want to write a procedure to handle the lost of focus of any of these
TextBox.

\\\
Public Class FooBar
Inherits TextBox

Private Sub FooBar_GotFocus( _
ByVal sender As Object, _
ByVal e As System.EventArgs _
) Handles MyBase.GotFocus
Me.BackColor = Color.Yellow
End Sub

Private Sub FooBar_LostFocus( _
ByVal sender As Object, _
ByVal e As System.EventArgs _
) Handles MyBase.LostFocus
Me.BackColor = Color.White
End Sub
End Class
///
 
Bernard Bourée said:
I have some TextBoxes created by code.

I want to write a procedure to handle the lost of focus of any of these
TextBox.

Ooops... I misread your question. 'AddHandler'/'RemoveHandler' are the way
to go...
 
Back
Top