|
-
Sep 28th, 2006, 12:35 PM
#1
Thread Starter
Lively Member
[RESOLVED][02/03] Change cursor from Module
How can I do it? If I try the usual way:
VB Code:
me.cursor = cursors.waitcursor
Certainly it will throw an exception. Thanks.
Last edited by Xcoder; Sep 28th, 2006 at 03:35 PM.
Last edited by Xcoder : 09-10-2001 at 12:45 AM.
-
Sep 28th, 2006, 02:03 PM
#2
Re: [02/03] Change cursor from Module
 Originally Posted by Xcoder
How can I do it? If I try the usual way:
VB Code:
me.cursor = cursors.waitcursor
Certainly it will throw an exception. Thanks.
Hi,
You could try this;
VB Code:
Dim oldCursor As Cursor = Cursor.Current
Cursor.Current = Cursors.WaitCursor
Hope it helps,
sparrow1
-
Sep 28th, 2006, 02:48 PM
#3
Thread Starter
Lively Member
Re: [02/03] Change cursor from Module
 Originally Posted by sparrow1
Hi,
You could try this;
VB Code:
Dim oldCursor As Cursor = Cursor.Current
Cursor.Current = Cursors.WaitCursor
Hope it helps,
sparrow1
It did, thanks
Last edited by Xcoder : 09-10-2001 at 12:45 AM.
-
Sep 28th, 2006, 02:55 PM
#4
Re: [02/03] Change cursor from Module
 Originally Posted by Xcoder
It did, thanks
Hi,
Your welcome, mark your thread as resolved!
Wkr,
sparrow1
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
|