Paste from Clipboard

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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.
 
Back
Top