On Mar 21, 2007, at 18:52 UTC, Dan Nafe wrote:

> I've dragged and dropped 62 JPEG images into my project, named  
> image001 thru image062. I need to "SaveAsJpeg" these items, but do  
> not know how to refer to them programatically.

You can't, not by index anyway.  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.

Best,
- Joe

--
Joe Strout -- [EMAIL PROTECTED]
Verified Express, LLC     "Making the Internet a Better Place"
http://www.verex.com/

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to