Quote Originally Posted by FNX
i think you've just started coding
How did You know?

Here is my sprite creation:
[pascal] with man do
begin
man.Image:=form22.dximagelist1.Items.Items[2];
man.Width:=man.Image.Width;
man.Height:=man.Image.Height;
man.Y:=53;
man.X:=944;
end;
[/pascal]

And here I try to draw it:
[pascal]procedure doGame;
....
//tiling stuff
form22.DXSpriteEngine1.Move(0);
form22.dxspriteengine1.Draw;
form22.DXSpriteEngine1.Dead;
[/pascal]
Actually, half of the time I'm looking at those examples