PDA

View Full Version : How to turn cursor to hourglass from MS Project 2010 VBA



pmerrill
04-10-2016, 05:43 PM
I'm sure this has been asked a hundred time but when in long macros, how does one change the cursor in MS Project 2010 to an hourglass? I've searched high and low on the web with no luck. I'm hoping someone here has the answer.

Paul_Hossler
04-22-2016, 10:52 AM
Not sure about the MS Project object model, but in Excel it's




Application.Cursor = xlWait

Application.Cursor = xlDefault




Worth a shot at least

pmerrill
04-24-2016, 07:28 PM
Not sure about the MS Project object model, but in Excel it's




Application.Cursor = xlWait

Application.Cursor = xlDefault




Worth a shot at least

Yeah, that's what you'd expect but no, does not work. The Application object in Project does not contain the cursor setting, that's why it's a real pain.