PictureBox Timer [Resolved]
Is there an easy way to loop the seconds/miliseconds that a picturebox will display a picture before hiding it again and showing the next PictureBox in sequence?
I haven't had any good results out of this at all.
Code:
PictureBox7.Visible = True
System.Threading.Thread.Sleep(1000)
PictureBox7.Visible = False
System.Threading.Thread.Sleep(1000)
PictureBox9.Visible = True
System.Threading.Thread.Sleep(1000)
PictureBox9.Visible = False
System.Threading.Thread.Sleep(1000)
PictureBox11.Visible = True
System.Threading.Thread.Sleep(1000)
PictureBox11.Visible = False
System.Threading.Thread.Sleep(1000)
PictureBox13.Visible = True
System.Threading.Thread.Sleep(1000)
PictureBox13.Visible = False
System.Threading.Thread.Sleep(1000)
PictureBox15.Visible = True
System.Threading.Thread.Sleep(1000)
PictureBox15.Visible = False
System.Threading.Thread.Sleep(1000)
PictureBox17.Visible = True
System.Threading.Thread.Sleep(1000)
PictureBox17.Visible = False