Setting the mouse pointer

  • Thread starter Thread starter Jon Rizzo
  • Start date Start date
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
 
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.
 
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
 
Back
Top