View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Charlotte E. Charlotte E. is offline
external usenet poster
 
Posts: 45
Default LoadPicture(FileName) with size?

That's it - thanks :-)


"Nigel" skrev i en meddelelse
...
All parameters should be enclosed e.g.

Image1.Picture = LoadPicture(FileName, 400, 300)


--

Regards,
Nigel




"Charlotte E." wrote in message
...
I have the following line in my VBA code:

Image1.Picture = LoadPicture(FileName)

...and it works fine :-)


But, since the picture is being shown in a UserForm, I would like to make
sure that it gets loaded in the right size, so I use:

Image1.Picture = LoadPicture(FileName), 400, 300

...but for some reason this goes wrong?!?

Even that the LoadPicture have both [widthDesired As Long] and
[heightDesired As Long] options?

What am I doing wrong???


TIA,