472,344 Members | 2,333 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,344 software developers and data experts.

Mouse Pointer Cursor and textbox

Hi Guys,

I have been having this problem recently where I have a form with a
textbox and button, if in the button event I have the following:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Me.Cursor = Cursors.WaitCursor
Textbox1.text = Now.Tostring
System.Threading.Thread.Sleep(2000) ' 2 second wait
Me.Cursor = Cursors.Arrow
End Sub

If I click the button the mouse cursor changes to an hourglass,
updates the textbox with current time and after 2 seconds the mouse
cursor returns back to the arrow The problem lies that when u click
the mouse button repeatedly even though the mouse cursor changes to an
hourglass the button is still clickable furthermore u can type text in
the textbox.

Is this the default behaviour of .NET? Is this a bug? I have even
tried disabling form elements and changing the cursor of these form
elements to hourlgass with no success can someone please help thanks

Regards DotNetShadow
Nov 20 '05 #1
9 4635
"DotNetShadow" <ro*********@netscape.net> schrieb
If I click the button the mouse cursor changes to an hourglass,
updates the textbox with current time and after 2 seconds the
mouse cursor returns back to the arrow The problem lies that when u
click the mouse button repeatedly even though the mouse cursor
changes to an hourglass the button is still clickable furthermore u
can type text in the textbox.

Is this the default behaviour of .NET?


This is the default behavior of Windows. Mouse and keyboard interaction and
other events have always been queued. Even in DOS there was a keyboard
buffer queueing the keyboard input.
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #2
Cor
Hi Roberto,

A question like this has been yesterday also in this newsgroup

the answer is make the textbox1.enabled = false

I hope this helps?

Cor
I have been having this problem recently where I have a form with a
textbox and button, if in the button event I have the following:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Me.Cursor = Cursors.WaitCursor
Textbox1.text = Now.Tostring
System.Threading.Thread.Sleep(2000) ' 2 second wait
Me.Cursor = Cursors.Arrow
End Sub

If I click the button the mouse cursor changes to an hourglass,
updates the textbox with current time and after 2 seconds the mouse
cursor returns back to the arrow The problem lies that when u click
the mouse button repeatedly even though the mouse cursor changes to an
hourglass the button is still clickable furthermore u can type text in
the textbox.

Is this the default behaviour of .NET? Is this a bug? I have even
tried disabling form elements and changing the cursor of these form
elements to hourlgass with no success can someone please help thanks

Nov 20 '05 #3
"Cor" <no*@non.com> schrieb
A question like this has been yesterday also in this newsgroup

the answer is make the textbox1.enabled = false


I think you mean button1.enabled = false, but, this wouldn't help also. The
mouse clicks will be processed after the button has been enabled again.
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #4
Cor
Hi Armin,

I saw your answer, and please see my message about what I thought it was a
bug but you say normal behaviour.

Now I know that this behaviour is known, I did not know it, but I find it
weird, no user will understand it.

Thanks anyway

Cor
A question like this has been yesterday also in this newsgroup

the answer is make the textbox1.enabled = false
I think you mean button1.enabled = false, but, this wouldn't help also.

The mouse clicks will be processed after the button has been enabled again.
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #5
Thanks for all your replies guys, just afew follow up questions:

1) So if this is the default behaviour for windows in vb6 apps would
the same problem occur?

2) How do you get around the problem? Disabling a form element will
not help since after the event occurs the mouse messages continue so
how do you cancel them?

3) Can sample code be posted to solve this problem?
Regards DotNetShadow

"Cor" <no*@non.com> wrote in message news:<ux*************@TK2MSFTNGP12.phx.gbl>...
Hi Armin,

I saw your answer, and please see my message about what I thought it was a
bug but you say normal behaviour.

Now I know that this behaviour is known, I did not know it, but I find it
weird, no user will understand it.

Thanks anyway

Cor
A question like this has been yesterday also in this newsgroup

the answer is make the textbox1.enabled = false


I think you mean button1.enabled = false, but, this wouldn't help also.

The
mouse clicks will be processed after the button has been enabled again.
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #6
"DotNetShadow" <ro*********@netscape.net> schrieb
Thanks for all your replies guys, just afew follow up questions:

1) So if this is the default behaviour for windows in vb6 apps
would the same problem occur?
yes
2) How do you get around the problem? Disabling a form element
will not help since after the event occurs the mouse messages
continue so how do you cancel them?

3) Can sample code be posted to solve this problem?


Put the work in a different thread. Your UI thread will stay responsive. In
this thread, I usually show a modal Form showing the current process and the
progress (if possible). The Form also contains a cancel button.

--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #7
Cor
Hi Armin,

If you see the test I did in this newsgroup with my question if it is bug.

I could not get the unwised behaviour when I disabled the textbox instead of
making it read only.

I was thinking on that later, maybe you can try it.

Cor
Nov 20 '05 #8
* "Armin Zingler" <az*******@freenet.de> scripsit:
2) How do you get around the problem? Disabling a form element
will not help since after the event occurs the mouse messages
continue so how do you cancel them?

3) Can sample code be posted to solve this problem?


Put the work in a different thread. Your UI thread will stay responsive. In
this thread, I usually show a modal Form showing the current process and the
progress (if possible). The Form also contains a cancel button.


Something like that (C#):

<http://www.codeproject.com/cs/miscctrl/progressdialog.asp>

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #9
"Cor" <no*@non.com> schrieb

If you see the test I did in this newsgroup with my question if it is
bug.
I thought I've already answered in the other thread. Now I looked again and
saw that my reply was still in the templates folder = not sent yet. I didn't
send it because I was unsure about the "message of your message". Well, I've
sent it now but it doesn't contain much, so.....
I could not get the unwised behaviour when I disabled the textbox
instead of making it read only.
I was thinking on that later, maybe you can try it.


I'll have a look.
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Videos 4 Sale | last post by:
Would you know how to change the look of a mouse pointer on a web page. On the page I have the mouse pointer is exactly as I have at work.......
2
by: Tom Alcendor | last post by:
I am building a chess game application that allows a user to click on a piece and move it to a new square. When the user clicks on a piece the...
7
by: fernandoronci | last post by:
Hi, I've been given the task of mantaining and fixing a website which I didn't design. I'm using Internet Explorer 5.5 and 6.x. Specifically,...
2
by: KarenP | last post by:
In my Windows Forms application, while executing a process that takes some time, I am changing the cursor to the hourglass by setting Cursor.Current...
6
by: Andrea V.F. | last post by:
How can I determine the control under the mouse cursor when a user muves the mouse?? For example if the user moves the cursor over a textbox i...
1
by: Stefan Mueller | last post by:
With the following code I can change the mouse pointer. However, if you click in Mozilla (with IE it works perfect) on 'Show hourglass' the mouse...
1
by: Andy Baxter | last post by:
hello, I'm writing a panoramic image viewer in javascript. When the mouse is over the image, I want it to be a crosshair (over most of the...
6
by: Jan Heppen | last post by:
Is it posible to set something so that when my vb.net (visual studio 2005, framework 2.0) application is busy that the mouse pointer change into a...
6
by: c.k. | last post by:
I was wondering if there was a way to give mouse movement on an empty form some lag/delay? For instance, user moves mouse, and the cursor is 20ms...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.