cheesemunger
Programmer
- Jul 6, 2007
- 11
OK, I have got a form with 8 images named image1,image2,image3.......,image8
I want to have a piece of code in a timer procedure,running every 0.1 of a second, that move each of the images to the right in turn.
Could you have this code?
var
number:integer;
imagenumber.left:=imagenumber.left+1
if number=8 then number:=1
else
number:=number+1
if this is not the code then can you tell me what is?
I want to have a piece of code in a timer procedure,running every 0.1 of a second, that move each of the images to the right in turn.
Could you have this code?
var
number:integer;
imagenumber.left:=imagenumber.left+1
if number=8 then number:=1
else
number:=number+1
if this is not the code then can you tell me what is?