Hello,
I am trying to draw an image and tile it across the screen, giving it the effect of drawing copies of itself.
I came across a sample on here
http://www.vbforums.com/showthread.p...eps-flickering
that shows how to stop flickering, and coincidentally also has an image that copies itself while it moves, looking like a tiled image.
How do I get an image (either an image or a picturebox, I don't care which), to achieve this result?
I have tried moving the picturebox to the left , ie
trying to force it to draw itself again at every new
interval, but that doesn't do what I am trying to do.
Could anyone help please? Thank you.
I am trying to draw an image and tile it across the screen, giving it the effect of drawing copies of itself.
I came across a sample on here
http://www.vbforums.com/showthread.p...eps-flickering
that shows how to stop flickering, and coincidentally also has an image that copies itself while it moves, looking like a tiled image.
How do I get an image (either an image or a picturebox, I don't care which), to achieve this result?
I have tried moving the picturebox to the left , ie
Code:
Timer1_timer
picturebox.left=picturebox.left+5
picturebox.autoredraw=true
interval, but that doesn't do what I am trying to do.
Could anyone help please? Thank you.