I am trying to write a macro that will paste a pic from the clipboard with some attributes set (no wrap, line width etc).
My problem is that after the paste the pic is no longer selected and my atrribute settings then fail (no object).
How can I keep the pic selected after the paste?
I have got this far:
Sub paste_pic()
Selection.PasteSpecial DataType:=wdPasteMetafilePicture
End Sub
David