auxcom Posted April 5, 2004 Posted April 5, 2004 What is the equivalent of the Screen.MousePointer in vb.net. I have general purpose function like this Public Function BusyMouse() Screen.MousePointer = vbHourglass End Function Public Function DefMouse() Screen.MousePointer = vbDefault End Function What is the equivalent code for this? Thanks! Quote
Menge Posted April 5, 2004 Posted April 5, 2004 // vbHourglass Cursor.Current = Cursors.WaitCursor // vbDefault Cursor.Current = Cursors.Default Quote Menge
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.