Set oBMP = Clipboard.GetData

  • Thread starter Thread starter George Hester
  • Start date Start date
G

George Hester

Does not exist in Intellisense.

http://support.microsoft.com/default.aspx?scid=kb;en-us;260850

It can be found in the subroutine AddIconToCommandBar.

I am wondering if instead of Clipboard.GetData there should be "something"
prior to Clipboard.GetData and if so what would it be w/r to this
subroutine? Because when I type clipboard and then the . nothing happens.
In other words when I type clipboard.getdata and then return Outlook Script
Editor does not recognize it.

There is also a problem with the constant DI_NORMAL in the second
subroutine. Outlook does not recognize it.

Outlook 2000

Thanks.
 
Am Sat, 26 Nov 2005 02:10:39 -0500 schrieb George Hester:

George, it´s a VB sample. The OOM doesn´t know the Clipboard.

Instead you can add an UserForm to your project, by that a ref on MSForms is
added. The MSForms library provides you with the DataObject for Clipboard
access.
 
Back
Top