Hourglass cursor in VB.NET

11,825

You can use either

Me.Cursor = Cursors.AppStarting

or

Me.Cursor = Cursors.WaitCursor

To set it back to the normal cursor:

Me.Cursor = Cursors.Default
Share:
11,825

Related videos on Youtube

Tadumc421
Author by

Tadumc421

Developer at Ascent, sistemske integracije, d.o.o. I have a good understanding knowledge about C++, VisualBasic.NET, MYSQL, HTML and i am eager to learn something new every day! Contact: dm me ty

Updated on May 25, 2022

Comments

  • Tadumc421
    Tadumc421 almost 2 years

    Im currently making windows forms program (application), and when the user logs into it, he must wait a few seconds before entering it.

    My question is: How to get the hourglass cursor, so the user will be informed that the program (app) is busy performing an operation?