How do I change the mouse coursor In Project VBA?

Z

Zoo

Hi,

What is the equivalent in Project VBA for the following Excel VBA code?

Sub Main()
Application.Cursor = xlWait
MsgBox "Test"
Application.Cursor = xlDefault
End Sub
 
R

Rod Gill

I don't think Project has an equivalent. Searching the object browser
revealed nothing and there doesn't appear to be anything suitable under the
application object.

Your only way if you really want to, is to explore using a Windows API.
www.mvps.org/access has some API code that usually works well under Project.

--

Rod Gill
Project MVP

NEW!! Project VBA Book, for details visit: http://www.projectvbabook.com
 
Top