|
-
Dec 29th, 1999, 08:24 PM
#1
Thread Starter
Junior Member
Upon clicking enter our application begins it's processing. Is there a way to disable (or change the mouse pointer) for as long as it is doing it's processing to let the user know that the program is still working.
-
Dec 29th, 1999, 08:27 PM
#2
Frenzied Member
sure
Me.MousePointer = vbHourglass
then
Me.MousePointer = vbDefault
resets it
------------------
Mark Sreeves
Analyst Programmer
[email protected]
A BMW Group Company
-
Dec 29th, 1999, 08:57 PM
#3
Hyperactive Member
Notice that a button can still be pressed, whether the mousecursor is an hourglass or not.
You can disable the form using me.enabled = false .
You can also use a progressbar to indicate the process is still in progress.
-
Dec 30th, 1999, 02:05 AM
#4
Lively Member
Can you change the pointer to a picture file?
Like a novelty pointer?
-
Dec 30th, 1999, 02:16 AM
#5
You can by setting the Value to vbCustom and Loading an Image into the MouseIcon Property, but the Image has to be in a Cursor or Icon Format, ie.
Code:
Screen.MouseIcon = LoadPicture("..\Common\Graphics\Icons\Arrows\Point09.ico")
Screen.MousePointer = vbCustom
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
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
|