At 1:18 PM -0700 3/21/07, [EMAIL PROTECTED] wrote: >You'll need to make a big array >somewhere, like this: > > // mImages() is a property of some class or window > mImages.Append image001 > mImages.Append image002 > mImages.Append image003 > >and so on, all the way up through image062. Then you can refer to >mImages(i) to get a reference to any particular image by its index i.
If you're going to the trouble of building an array of these pictures, you might as well build a dictionary instead, using the picture name as the key. Then you could refer to them by name and not just an anonymous index ID. Besides it's a great way to show off your baby. ;-) Regards, Joe Huber _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
