Change cursor state in Powerpoint Addin

D

DavidH&P

Hi,
I'm using PowerPoint 2007 and VSTO 2005 SE.
I would like to change the cursor state from my code.

Is it possible ?

David
 
D

DavidH&P

You pointed me to an other solution, and I just use that now:

try
{
Cursor.Current = Cursors.WaitCursor;

//my code
}
finally
{
Cursor.Current = Cursors.Default;
}

thanks for your idea !
 
Top