Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
765 views

Gracefully closing multithreading application?

I have an application that has two threads. The first one (the main thread) that captures the data using socket and update DataTables The second Inserts the DataTables into the database. The ...
4
votes
3answers
557 views

Task manager close is not detected second time in a WinForms Application

private void Form1_FormClosing(object sender, FormClosingEventArgs e) { if (e.CloseReason == CloseReason.UserClosing) { if (MessageBox.Show(this, "Do you really want to close?", ...
2
votes
3answers
154 views

When to call PostQuitMessage

Like many applications, mine creates multiple windows. I do not know and cannot keep track of how many windows have been created, so I don't know when there are none. My problem is that when all the ...
1
vote
4answers
462 views

C# application closing problem

I want my application such that, it will minimize to System Tray on clicking the close(X) button. And it will only be closed by clicking a different button/menu on the main application window or ...
0
votes
1answer
146 views

Error when closing window (cocoa application)

this's a log which I get when close window in my application: Nov 21 20:58:17 Mac-mini.local FirstGUIapp[3255] <Error>: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID -1 Nov 21 20:58:17 ...
0
votes
1answer
102 views

applicationWillTerminate not called

I implemented applicationWillTerminate method, but it's never called -(void)applicationWillTerminate:(NSNotification *)notification { [[NSApplication sharedApplication] terminate:self]; ...
0
votes
3answers
2k views

C# disable Alt+F4 but allow the the form to be closed by code, CloseReason.UserClosing is not helping

I want that the form will not close by doing Alt+F4 but if Application.Exit() or this.Close is called from the same Form, it should be closed. I tried CloseReason.UserClosing but still no help.