|
single click vs double click
11/13/2009 2:21:25 PM
(Total replies: 1)
|
| Hi,
<br />
My TRY/CATCH throws an error when I DOUBLE CLICK some of my buttons to load another .EXE program because it says that it is already loaded.
<br />
But a SINGLE CLICK works fine.
<br />
<br />
How can I prevent this when other users double click these buttons?
<br />
Thanks |
|
|
|
|
|
|
formclosing event
11/12/2009 5:34:46 PM
(Total replies: 1)
|
| below is c# formclosing event.
<br />
<br />
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
<br />
{
<br />
dosomething(); // do some thing more on closing
<br />
}
<br />
<br />
Is there a way to call this event with a BUTTON instead of ie.by hitting the little X icon on the top right corner of scteen when exiting, so one can do something more on closing?
<br />
thanks |
|
|
|
Re: formclosing event
11/13/2009 8:29:34 AM
(Total replies: 0)
|
| Vulpes,
<br />
Thank you very much.
<br />
Martin |
|