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 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
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
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
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
"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
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
* "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>
"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 This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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.......
|
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...
|
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,...
|
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...
|
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...
|
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...
|
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...
|
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...
|
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...
|
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...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
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...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
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...
|
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...
|
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...
|
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...
|
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...
| |