i'm making a game project for VB.NET class and i really need to know how to put multiple picboxes into one timer. Like show them then hide them. without using 10000000 timersex how do u combine these 2 timers into 1
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
picMove2.Left = picMove1.Left + x
picMove1.Left = picMove2.Left + x
picMove1.Hide()
picMove2.Show()

Timer2.Enabled = False
Timer3.Enabled = True
End Sub

Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
picMove3.Left = picMove2.Left + x
picMove1.Left = picMove3.Left + x
picMove2.Hide()
picMove3.Show()

Timer3.Enabled = False
Timer4.Enabled = True


End Sub

plz help thx