Mouse Cursor appear as hourglass

lothos12345

Junior Contributor
Joined
May 2, 2002
Messages
294
Location
Texas
How do you get the mouse cursor to appear as an hourglass while the program is running in VB.NET? Any help given is greatly appreciated.
 
Something like
Visual Basic:
Me.Cursor = Cursors.WaitCursor
You get a list of predefined cursors, just like you do colors, pens, and brushes.
 
Back
Top