Mouse pointer

  • Thread starter Thread starter Derek
  • Start date Start date
D

Derek

I'm trying to get the mouse pointer to change to an
hourglass while processing on a form (Outlook 2000), but
I can only get it to work when the mouse is over
individual controls. How do I get it to change for the
whole form? Tried "me.mousepointer = ..." but doesn't
appear to work.
 
Take out the "Me." part and just try

MousePointer = ccHourGlas

[code

MousePointer = ccDefaul
 
Back
Top