Hi
I have a form and on that form is a imagebox, how can I make the image box move from the left of the form to the right of the form
Hi
I have a form and on that form is a imagebox, how can I make the image box move from the left of the form to the right of the form
Moving an imagebox
Brad House
imagebox.left = me.left - imagebox.width
Andrew
y2k4life
xanthus
If PictureBox1.Left < Me.Width - PictureBox1.Width Then
PictureBox1.Left += 1
Else
Timer1.Enabled = False
End If
Kyderoy
I think it's :
ImageBox.Left = Me.Width - ImageBox.Width
Schu