How do you go about pausing your code from operating. I want to make an animation by making a picture box visable then another then another but I need a period of time between transitions? How would I go about doing this?
boredPic(1, 1).Visible = True
boredPic(1, 1).Image = My.Resources.Red
'pause for half a second then
boredPic(1, 1).Visible = false
boredPic(2, 1).Visible = True
boredPic(2, 1).Image = My.Resources.Red
'pause again for half a second
etc