Yea, i've made a lot of threads xD well, im learning and im doing things for different projects.
Is there a shorter way to change the backcolor of the textboxes instead of doing this:
Private Sub TextBox1_GotFocus(sender As Object, e As EventArgs) Handles TextBox1.GotFocus
Me.TextBox1.BackColor = Color.FromArgb(65, 65, 65)
End Sub
Private Sub TextBox1_LostFocus(sender As Object, e As EventArgs) Handles TextBox1.LostFocus
Me.TextBox1.BackColor = Color.FromArgb(60, 60, 60)
End Sub
So, is there a better way to change the color of many textboxes when it gets/lost focus ?