View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Nigel[_2_] Nigel[_2_] is offline
external usenet poster
 
Posts: 735
Default LoadPicture(FileName) with size?

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,