Hi guys! take a look at this:
Sub Timer1Tick(sender As Object, e As EventArgs)
initialCountdownNo = initialCountdownNo + 1
Select Case initialCountdownNo
Case 3
cars(0).visible = True
cars(1).visible = True
cars(2).visible = True
initialCountdown.Stop()
End Select
End Sub
since thos objects are grouped in an array isnt there a way to set the property "visible" to true of all of them in a single line of code?