Setting the mouse pointer

J

Jon Rizzo

Is there a trick to setting the mouse pointer in a COM addin?
Screen.MousePointer does not seem to do the trick...


Jon
 
K

Ken Slovak - [MVP - Outlook]

From where in the addin? In a custom form you can change the cursor using
the form's Me.MousePointer property in VB. In VBA you'd have to use a Win32
API call to change the mouse cursor.
 
J

Jon Rizzo

Nevermind - I discovered a document on Microsoft's web site saying that it
is not possible in an Outlook COM add-in. Thanks for the reply, though.


Jon
 
Top