Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hourglass cursor in VB.NET

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?

like image 819
Tadumc421 Avatar asked Dec 11 '22 06:12

Tadumc421


1 Answers

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
like image 198
MatSnow Avatar answered Jan 03 '23 07:01

MatSnow