So when I was writing code to a program it gave me a error in the first line that said "Identifier Expected" here is the code to the program.
Code:
Public Class
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim RND As New Random
ElectricButton1.Location = New Point(RND.Next(1, 270), RND.Next(1, 270))
End Sub
Private Sub ElectricButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ElectricButton1.Click
If Timer1.Interval = 50 Then MsgBox("You have won!") : End
MsgBox("FASTER!!")
Timer1.Interval -= 50 : ToolStripStatus1.Text += 50
End Sub
Private Sub ElectricButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ElectricButton2.Click
ElectricButton1.Show()
ElectricButton2.Hide()
End Sub
End Class