Loading images

  • Thread starter Thread starter Jason Morin
  • Start date Start date
J

Jason Morin

I'm loading pictures into Image1, Image2, Image3 on a
useform called "Game". Here's what I have:

For i = 1 To 3
Game.Image & i.Picture = LoadPicture("C:\....")
Next i

The "Image & i" is erroring. What's the correct syntax?
Thx.
Jason
 
Hi Jason,

You can't concatenate object names like that. You'll have to do it with
three separate lines of code (or do something more complex, like set the Tag
properties of each image control, then loop the whole controls collection
and identify them by their Tag).

Game.Image1.Picture = LoadPicture("C:\....")
Game.Image2.Picture = LoadPicture("C:\....")
Game.Image3.Picture = LoadPicture("C:\....")

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *
 
Jason,

Try this:

Game.Controls("Image" & i).Picture = LoadPicture("C:\....")

hth,

Doug Glancy
 
What I do is this:

For i = 1 to 3
Game.Controls("Image" & i).Object.Picture = LoadPicture("C:\...")
Next i
 
Thanks! That did the trick.
-----Original Message-----
Jason,

Try this:

Game.Controls("Image" & i).Picture = LoadPicture ("C:\....")

hth,

Doug Glancy




.
 
Gracias. Ahora funciona perfectamente.
-----Original Message-----
What I do is this:

For i = 1 to 3
Game.Controls("Image" & i).Object.Picture = LoadPicture("C:\...")
Next i

--
Regards,

Juan Pablo González




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top