Computer Science Canada Dublicate Images |
Author: | TheXploder [ Sat Feb 05, 2005 3:00 pm ] |
Post subject: | Dublicate Images |
How do you create as many images and load them as you want? To create tile based levels. I got the main array already. What's the best way to do that, and in terms of the functions I need to use. |
Author: | Brightguy [ Sat Feb 05, 2005 10:37 pm ] |
Post subject: | Re: Dublicate Images |
If your project is simple enough, you could just use an Image control array. Otherwise, a Form has a PaintPicture method that you can use to display images. (This method can also be used inside PictureBox controls.) If you use PaintPicture, the easiest way to make sure that everything is displayed properly is to set the AutoRedraw property to True. |