Click here to Skip to main content
15,881,092 members
Home / Discussions / C#
   

C#

 
GeneralRe: Best way to read string xml? Pin
Keld Ølykke22-Mar-13 0:27
Keld Ølykke22-Mar-13 0:27 
GeneralRe: Best way to read string xml? Pin
Boipelo22-Mar-13 5:32
Boipelo22-Mar-13 5:32 
AnswerRe: Best way to read string xml? Pin
PIEBALDconsult21-Mar-13 8:49
mvePIEBALDconsult21-Mar-13 8:49 
GeneralRe: Best way to read string xml? Pin
Boipelo21-Mar-13 9:19
Boipelo21-Mar-13 9:19 
AnswerRe: Best way to read string xml? Pin
jschell21-Mar-13 8:55
jschell21-Mar-13 8:55 
GeneralRe: Best way to read string xml? Pin
Boipelo21-Mar-13 9:14
Boipelo21-Mar-13 9:14 
GeneralRe: Best way to read string xml? Pin
jschell22-Mar-13 9:57
jschell22-Mar-13 9:57 
Questionform closing event not going to method Pin
MichCl21-Mar-13 4:30
MichCl21-Mar-13 4:30 
I'm trying to add an event handler for form closing event. I'm not very good at doing event handlers. I looked at http://stackoverflow.com/questions/7076751/how-do-i-avoid-validating-cancel-causing-app-exit-to-hang[^], among other places on the internet, but the thread is not getting to my method. It wasn't building until I added the property for FormClosing at the top. Hopefully someone here has an idea why it's not working. Thanks!

C#
public partial class GenericPC : UserControl
{
...
public FormClosingEventHandler Closing { get; set; }

public Control GetPC(<params>) //this gets called
{
    ...
    this.Closing += new System.Windows.Forms.FormClosingEventHandler(this.updateLogsOnClose);
    ...
}

private void updateLogsOnClose(object sender, System.ComponentModel.CancelEventArgs e)
{
    //thread doesn't go here when form closes
    logCountsToFile(logCountFile); 
}
...
}


modified 21-Mar-13 11:28am.

AnswerRe: form closing event not going to method Pin
PIEBALDconsult21-Mar-13 5:01
mvePIEBALDconsult21-Mar-13 5:01 
GeneralRe: form closing event not going to method Pin
MichCl21-Mar-13 5:31
MichCl21-Mar-13 5:31 
GeneralRe: form closing event not going to method Pin
PIEBALDconsult21-Mar-13 8:58
mvePIEBALDconsult21-Mar-13 8:58 
AnswerRe: form closing event not going to method Pin
Eddy Vluggen21-Mar-13 5:59
professionalEddy Vluggen21-Mar-13 5:59 
GeneralRe: form closing event not going to method Pin
MichCl21-Mar-13 8:02
MichCl21-Mar-13 8:02 
AnswerRe: form closing event not going to method Pin
Eddy Vluggen21-Mar-13 9:04
professionalEddy Vluggen21-Mar-13 9:04 
AnswerRe: form closing event not going to method Pin
Pete O'Hanlon21-Mar-13 9:07
mvePete O'Hanlon21-Mar-13 9:07 
GeneralRe: form closing event not going to method Pin
MichCl21-Mar-13 9:18
MichCl21-Mar-13 9:18 
QuestionHow to combine drawing Pin
wgy_work20-Mar-13 19:04
wgy_work20-Mar-13 19:04 
AnswerRe: How to combine drawing Pin
Richard MacCutchan20-Mar-13 22:50
mveRichard MacCutchan20-Mar-13 22:50 
GeneralRe: How to combine drawing Pin
wgy_work20-Mar-13 22:56
wgy_work20-Mar-13 22:56 
GeneralRe: How to combine drawing Pin
Richard MacCutchan20-Mar-13 23:25
mveRichard MacCutchan20-Mar-13 23:25 
GeneralRe: How to combine drawing Pin
Wayne Gaylard20-Mar-13 23:29
professionalWayne Gaylard20-Mar-13 23:29 
AnswerRe: How to combine drawing Pin
TheRealRarius21-Mar-13 0:40
TheRealRarius21-Mar-13 0:40 
GeneralRe: How to combine drawing Pin
wgy_work21-Mar-13 14:15
wgy_work21-Mar-13 14:15 
QuestionReturn String from a CheckListBox Control Pin
PDTUM20-Mar-13 6:55
PDTUM20-Mar-13 6:55 
AnswerRe: Return String from a CheckListBox Control Pin
Eddy Vluggen20-Mar-13 7:59
professionalEddy Vluggen20-Mar-13 7:59 

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.