This drops a picturebox straight down and has an if/then statement if hit's the bottom
vb Code:
PictureBox1.Location = New Point(PictureBox1.Location.X, PictureBox1.Location.Y + 1) If PictureBox1.Bounds.Bottom > Me.Bounds.Bottom Then 'It's hit the bottom Else 'It didn't hit the bottom End If




Reply With Quote