C
Charlotte E.
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,
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,