Beginner, Need Help w/Moving PicBoxes

Darc

Regular
Joined
Apr 18, 2003
Messages
89
OK, I've been trying to figure this out for quite some time but I just can't figure it out. I can move the Picture Boxes fine but the problem is when the picboxes move over each other, the back of the pic boxes overlap the one behind it (this is a duck gallery shooting game btw) Can someone Please help me???
 
You won't be able to use picturebox's for that type of game. The transparency doesn't layer on top of other picturebox controls.

You can use GDI+ to do all the drawing through DrawImage calls (on a Graphics object), or you can use something like DirectX9 (which includes DirectDraw for 2D drawing).

-Nerseus
 
Back
Top