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

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,