G
Guest
Hello.
What I am tiring to accomplish is highlight and restore the backcolor of "a"
textbox when a cursor hits or leaves it with a general sub and a handler that
contains the fields I want to change. The code below gives you an idea of
what I would like to accomplish and it only demonstrates one cycle or event.
There would be in my thinking another general sub to return the textbox to
the original color.
Private Sub HighLight(ByVal Sender As Object, ByVal e As EventArgs) Handles
txt1.Enter, txt2.Enter
Sender.BackColor = Color.Aquamarine
End Sub
Thanks in Advance!
Brain Dead
What I am tiring to accomplish is highlight and restore the backcolor of "a"
textbox when a cursor hits or leaves it with a general sub and a handler that
contains the fields I want to change. The code below gives you an idea of
what I would like to accomplish and it only demonstrates one cycle or event.
There would be in my thinking another general sub to return the textbox to
the original color.
Private Sub HighLight(ByVal Sender As Object, ByVal e As EventArgs) Handles
txt1.Enter, txt2.Enter
Sender.BackColor = Color.Aquamarine
End Sub
Thanks in Advance!
Brain Dead