Results 1 to 4 of 4

Thread: PictureBox Timer [Resolved]

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Dec 2003
    Posts
    127

    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
    Last edited by teamdad; Jun 22nd, 2004 at 05:55 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width