paste into shape object's text property

M

mike

I'm trying to write a vba routine that will paste the contents of the
clipboard into a textbox or process shape's text propery. Any ideas?
Thanks.
 
P

Paul Herber

I'm trying to write a vba routine that will paste the contents of the
clipboard into a textbox or process shape's text propery. Any ideas?

It's not easy to find.

look at the shape object's Characters object then the Paste method of
that.

shape.Characters.Paste
 
Top