I want to have 60 buttons that each button has same function with other but not the output when its selected/focused. I don't want to make one by one function.
Here is what i mean:
Private Sub Button_Click() Handles button1.click, button2.click, .... ,button60.click
Dim ST As Button
[ST As Selected/Focused Button] <-- I have no idea
ST.BackColor.ToString = TextBox1.Text
End Sub