|
-
Jul 8th, 2003, 03:10 AM
#1
Thread Starter
New Member
Change cursor
I’ve a VB.Net application that doesn’t show any form, and I want to change the cursor during the execution. I’m trying with:
Code:
Cursor.Current = System.Windows.Forms.Cursors.WaitCursor
This code works with form applications but not in this case . Any ideas??
-
Jul 8th, 2003, 03:22 AM
#2
Sleep mode
Try this :
VB Code:
Me.Cursor = System.Windows.Forms.Cursors.WaitCursor
-
Jul 8th, 2003, 03:38 AM
#3
Thread Starter
New Member
But the application starts in a Module and Me is not valid within a Module
-
Jul 8th, 2003, 08:25 AM
#4
Sleep mode
It doesn't seem to work But you I believe you still can do it with ClipCursor API . I have a demo in VB6 , let me know if you want it (you can translate it to work with .NET ) .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|