R
Ranco Marcus
In VBA code an image is received from an ActiveX object as an StdImage.
Dim Pic As StdPicture
Set Pic = Session.GetThePicture
I can easily show this image in a UserForm by setting the Picture property
of an Image control:
UserForm1.Image1.Picture = Pic
However, I would like to "paste" or insert this image into the
ActiveDocument preferably without saving it to file first or using the
clipboard. Is there any other way this can be accomplished?
Kind regards,
Ranco Marcus
Dim Pic As StdPicture
Set Pic = Session.GetThePicture
I can easily show this image in a UserForm by setting the Picture property
of an Image control:
UserForm1.Image1.Picture = Pic
However, I would like to "paste" or insert this image into the
ActiveDocument preferably without saving it to file first or using the
clipboard. Is there any other way this can be accomplished?
Kind regards,
Ranco Marcus