Question How to show sandglass while waiting for a process?

raysefo

Well-known member
Joined
Jul 21, 2010
Messages
207
Programming Experience
Beginner
Hi,

I would like to show a sandglass or something while user waits for a process (parsing a text file). Is there a way to do it?

Thanks in advance.

Best Regards.
 
depending on context
VB.NET:
Cursor.Current = Cursors.WaitCursor
or
VB.NET:
Application.UseWaitCursor = True
 
Back
Top