Paste from Clipboard

M

Marco Zingaro

Hi,

Can I paste from Clipboard using VBA?
Preferably "onOpen" of a new message (created by a script in Word VBA:
GetObject("", "Outlook.application") .. mOutlookApp.CreateItem(olMailItem) ..
etc)

Thanks.
 
K

Ken Slovak - [MVP - Outlook]

VBA doesn't support either the VB clipboard or the Office clipboard, you'd
have to use the clipboard from the Win32 clipboard API's. You can look that
up on MSDN.
 
Top