A
Andy
I use Word to 'print screen' what user see on the monitor.
I can copy the screen into Clipboard, start Word, rotate
page to have it landscape orientation, adjust margins and
paste the picture from the Clipboard.
At this point the picture covers a small portion of the
page at the top-left corner of the page.
How can I resize the picture to fill the whole page?
If I record the macro I get:
ActiveDocument.Shapes("Picture 2").Select
Selection.ShapeRange.ScaleWidth 1.52, msoFalse,
msoScaleFromTopLeft
Selection.ShapeRange.ScaleHeight 1.52, msoFalse,
msoScaleFromTopLeft
But I will not always know the name of the picture
("Picture 2") and since my users have different
resolution of their monitors I will not know the size of
the pasted picture, so the value 1.52 may change.
Any ideas?
---- Andy
I can copy the screen into Clipboard, start Word, rotate
page to have it landscape orientation, adjust margins and
paste the picture from the Clipboard.
At this point the picture covers a small portion of the
page at the top-left corner of the page.
How can I resize the picture to fill the whole page?
If I record the macro I get:
ActiveDocument.Shapes("Picture 2").Select
Selection.ShapeRange.ScaleWidth 1.52, msoFalse,
msoScaleFromTopLeft
Selection.ShapeRange.ScaleHeight 1.52, msoFalse,
msoScaleFromTopLeft
But I will not always know the name of the picture
("Picture 2") and since my users have different
resolution of their monitors I will not know the size of
the pasted picture, so the value 1.52 may change.
Any ideas?
---- Andy