Can we use our(custom) cursor in xlwait?

M

musa.biralo

Hi,
Is there a way to change default hourglass cursor (xlwait) to
something different? My main intension is to use some new type of
cursor rather than old hourglass....

if you know any resources or the code please help me....

Thanks
musa.biralo
 
J

Jim Cone

If you are referring to the cursor displayed on a UserForm then
there are many choices from the C:\WINDOWS\Cursors folder.

On a Worksheet, you are pretty much limited to the xlMousePointer
constants... xlDefault, xlWait, xlNorthwestArrow and xlIBeam.
Also you must change it back as that is not done automatically...
Application.Cursor = xlDefault
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"musa.biralo" <[email protected]>
wrote in message
Hi,
Is there a way to change default hourglass cursor (xlwait) to
something different? My main intension is to use some new type of
cursor rather than old hourglass....

if you know any resources or the code please help me....

Thanks
musa.biralo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top