Hourglass cursor in VB.NET
Asked Answered
C

1

5

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?

Crinkleroot answered 18/6, 2018 at 8:5 Comment(0)
F
15

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
Faa answered 18/6, 2018 at 8:7 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.