Click here to Skip to main content
15,921,463 members
Home / Discussions / C#
   

C#

 
GeneralRe: generics type instantiation Pin
George_George7-May-08 22:20
George_George7-May-08 22:20 
GeneralRe: generics type instantiation Pin
Guffa8-May-08 12:37
Guffa8-May-08 12:37 
GeneralRe: generics type instantiation Pin
George_George8-May-08 22:10
George_George8-May-08 22:10 
GeneralRe: generics type instantiation Pin
George_George7-May-08 1:22
George_George7-May-08 1:22 
GeneralRe: generics type instantiation Pin
George_George7-May-08 1:19
George_George7-May-08 1:19 
GeneralRe: generics type instantiation [modified] Pin
Guffa7-May-08 6:32
Guffa7-May-08 6:32 
GeneralRe: generics type instantiation Pin
George_George7-May-08 22:13
George_George7-May-08 22:13 
GeneralRe: generics type instantiation Pin
Guffa8-May-08 12:43
Guffa8-May-08 12:43 
GeneralRe: generics type instantiation Pin
George_George8-May-08 22:05
George_George8-May-08 22:05 
GeneralRe: generics type instantiation Pin
Guffa9-May-08 1:39
Guffa9-May-08 1:39 
GeneralRe: generics type instantiation Pin
George_George10-May-08 22:02
George_George10-May-08 22:02 
QuestionMultiThreading in C#.Net Web Application Pin
kc_krishnan4-May-08 19:21
kc_krishnan4-May-08 19:21 
AnswerRe: MultiThreading in C#.Net Web Application Pin
Christian Graus4-May-08 19:48
protectorChristian Graus4-May-08 19:48 
GeneralRe: MultiThreading in C#.Net Web Application Pin
kc_krishnan4-May-08 23:39
kc_krishnan4-May-08 23:39 
GeneralRe: MultiThreading in C#.Net Web Application Pin
Christian Graus4-May-08 23:55
protectorChristian Graus4-May-08 23:55 
QuestionUnauthorised User pop up comes while accessing from other systems... Pin
ananthrahul4-May-08 19:09
ananthrahul4-May-08 19:09 
AnswerRe: Unauthorised User pop up comes while accessing from other systems... Pin
Christian Graus4-May-08 19:14
protectorChristian Graus4-May-08 19:14 
GeneralRe: Unauthorised User pop up comes while accessing from other systems... Pin
ananthrahul4-May-08 19:40
ananthrahul4-May-08 19:40 
GeneralRe: Unauthorised User pop up comes while accessing from other systems... Pin
Christian Graus4-May-08 19:49
protectorChristian Graus4-May-08 19:49 
GeneralRe: Unauthorised User pop up comes while accessing from other systems... Pin
ananthrahul4-May-08 20:23
ananthrahul4-May-08 20:23 
GeneralRe: Unauthorised User pop up comes while accessing from other systems... Pin
Christian Graus4-May-08 21:11
protectorChristian Graus4-May-08 21:11 
QuestionHow to return to application during OnClosing event? Pin
cocoonwls4-May-08 17:44
cocoonwls4-May-08 17:44 
Hi all,
I have a form that have assign OnClosing event (CancelEventHandler) . My question is how can i break the event and get back to application after i press the close button "X"(beside the maximize button)?I have use "return" to try to get back my application, but it dosen't work for me. Below is the example coding..

this.Closing += new System.ComponentModel.CancelEventHandler(OnClosing);<br />
<br />
<br />
private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e)<br />
{<br />
   exitToolStripMenuItem1_Click(sender, e);<br />
}<br />
<br />
<br />
private void exitToolStripMenuItem1_Click(object sender, EventArgs e)<br />
{<br />
    DialogResult dResult = DialogResult.None;<br />
    dResult = MessageBox.Show("Save Changes to New Project before Exit?", "Exit TimewayGenerator", MessageBoxButtons.YesNoCancel);<br />
<br />
     if (dResult == DialogResult.None || dResult == DialogResult.Cancel)<br />
     {<br />
       return;<br />
     }<br />
}<br />



Any tips are welcome.
Thanks in advance.

regards
cocoonwls
AnswerRe: How to return to application during OnClosing event? Pin
Christian Graus4-May-08 18:46
protectorChristian Graus4-May-08 18:46 
AnswerRe: How to return to application during OnClosing event? Pin
Vikram A Punathambekar4-May-08 18:56
Vikram A Punathambekar4-May-08 18:56 
GeneralRe: How to return to application during OnClosing event? Pin
Christian Graus4-May-08 19:01
protectorChristian Graus4-May-08 19:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.