LikeThisName
Vendor
Please what is wrong with this code?
Code:
Private Sub UpdateAnswer(ByVal question As Integer, ByVal answer As Integer)
Dim x As Integer
Dim t As TextBox
Dim b As Button
t = "textbox" & question
t.Text = answer
For x = 1 To 5
b = "Button" & x
b.BackColor = b.BackColor.White()
Next
("Button" & answer).BackColor = ("Button" & answer).BackColor.Black()
End Sub
LikeThisName <- ?