Tagged Questions
The close tag has no wiki summary.
21
votes
7answers
2k views
Best way to close nested streams in Java?
What is considered the best, most comprehensive way to close nested streams in Java? For example, consider the setup:
FileOutputStream fos = new FileOutputStream(...)
BufferedOS bos = new ...
19
votes
5answers
388 views
Force application close on system shutdown
I have a Windows Forms application that when the Main Window is closing, it displays a basic dialog box, confirming the action. If the user decides to cancel the application exit is cancelled.
...
16
votes
8answers
3k views
Unable to close many buffers by one command in Vim
I use Vim in Screen. I run the command
vim <bigFolder>
I am in stuck, since it does not make sense to close each buffer by
:q
How can you close all active buffers in Vim, by one command ...
16
votes
6answers
2k views
Does close ever throw an IOException?
After providing some answers here, and reading some comments, it would seem that, in practice IOException is never thrown on close for file I/O.
Are there any cases in which calling close on a ...
14
votes
6answers
29k views
Browser window close event
I want to capture the browser window/tab close event.
I have tried the following with jQuery:
jQuery(window).bind("beforeunload", function(){return confirm("Do you really want to close?") })
But ...
13
votes
4answers
2k views
Capture window close event
I want to capture events that close editor window (tab) in Visual Studio 2008 IDE.
When I use
dte2.Application.Events.get_CommandEvents(null, 0).BeforeExecute
I successfully captured such events:
...
10
votes
7answers
7k views
Close a WP7 application programatically? [closed]
Possible Duplicate:
Windows Phone 7 close application
How do I programatically close a WP7 application?
10
votes
4answers
5k views
close vs shutdown socket?
In C, I understood that if we close a socket means the socket will be destroyed and can be re-used later.
How about shutdown? The description said it close half of a duplex connection to that socket. ...
10
votes
2answers
5k views
How do I handle the window close event (user clicking the 'X' button) in a Python Tkinter program?
How do I handle the window close event (user clicking the 'X' button) in a Python Tkinter program?
9
votes
5answers
416 views
Should I open() and close() my SQL database constantly or leave it open?
I am creating an app that uses an SQL database for storing data. The way the app is designed it will be updated every 3 minutes or so with new data depending on user actions while the app is running.
...
9
votes
8answers
9k views
JQuery: Disable 'X' button in top-right of Dialog
I'm trying to make a dialog that requires a user to agree to terms before continuing, and don't want to allow the user to just click the 'X' in the top right corner of the dialog to close. I'd like to ...
9
votes
2answers
11k views
jquery: close dialog on click (anywhere)
Is there a default option to close a jquery dialog by clicking somewhere on the screen instead of the close icon?
8
votes
6answers
410 views
What disadvantages are there for leaving an SQL Connection open?
This seems to be a simple question, but I wonder the disadvantages of not calling the "close()" function.
Thanks.
7
votes
1answer
179 views
WinApp Form Crash Without any Error or Exception .Net
I have a problem with My WinApp Form program which contain a tab Control with WebBrowser control DLL (GeckoFX).
My application while running close without any exception or anything. It could happen ...
7
votes
1answer
121 views
Trying to make close sleep on Linux
I need to investigate/test the behavior of some code on Linux under conditions where close might be interrupted by signal handlers (either with or without SA_RESTART). What is the most convenient ...
7
votes
1answer
305 views
What happens when I close/abort a WCF channel/proxy?
I'm trying to get a better understanding of what's going on when I use a WCF proxy. I'm having trouble understanding what happens when I close (or don't close) a proxy.
What's going on when I call ...
7
votes
1answer
2k views
Python [Errno 98] Address already in use
In my Python socket program, I sometimes need to interrupt it with ctrl-c. When I do this, it does close the connection using socket.close() however when I try to reopen it I have to wait what seems ...
7
votes
2answers
452 views
swing: programmatic close of JFrame
What's the programmatic equivalent of clicking the close (x) button in the upper right corner of a JFrame?
There's the dispose() method but that's not the same thing, since a JFrame can be set to do ...
7
votes
3answers
19k views
How to close current tab in a browser window?
I want to create a link on a webpage that close current active tab in a browser without closing other tabs in browser. When user click that close link a alert message should appear asking user to ...
7
votes
3answers
203 views
Do I need “close FILEHANDLE” check for errors?
does the "or die $!"-part in the "close $fh or die $!;"-line any good?
#!/usr/bin/env perl
use warnings;
use strict;
my $file = 'my_file';
open my $fh, '<', $file or die $!;
print <$fh>;
...
7
votes
2answers
1k views
When using Java's FileLock, is it ok to let close() to automatically do a lock.release()?
As most should know close() also closes any streams uses.
This allows the follow code:
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(...)));
...
br.close();
This ...
6
votes
4answers
297 views
Should I close a StringReader?
I use a StringReader to turn a string into something I can upload to an SFTP server (it takes a stream). Is there any point in closing that StringReader afterwards? As far as I can see in the source ...
6
votes
3answers
827 views
Ruby's File.open and the need for f.close
It's common knowledge in most programming languages that the flow for working with files is open-use-close. Yet I saw many times in ruby codes unmatched File.open calls, and moreover I found this gem ...
6
votes
6answers
1k views
C# Socket.Close - Should I still call Dispose?
Should I still call Dispose() on my socket after closing it?
For example:
mySocket.Shutdown(SocketShutdown.Both);
mySocket.Close();
mySocket.Dispose(); // Redundant?
I was wondering because the ...
6
votes
3answers
1k views
setting programatically closereason c#
I want to set the CloseReason of a form after I call This.Close() inside the form.
Usually, this forms is closed by itself calling This.Close(), but I want to ask the user if they REALLY want to ...
6
votes
8answers
625 views
Does closing the application stops all active BackgroundWorkers?
Simple question, to repeat the title:
Does closing the WinForms application stops all active BackgroundWorkers?
(I know that many StackOverflow's threads talk about BackgroundWorker, but none I've ...
6
votes
6answers
2k views
Closing Streams in Java
why do we need to close a FileInputStream (and streams in general) in any case before we leave the program? What would happen otherwise? If the program stops before the input stream is closed ...
5
votes
3answers
227 views
How to interrupt the window closing mechanism in scala swing
I'm building a GUI with the SimpleSwingApplication trait in scala swing.
What I want to do is to provide a mechanism on close, that asks the user (Yes,No,Cancel) if he didn't save the document yet. If ...
5
votes
4answers
406 views
How do I close my iPhone App when the screen locks?
I'm writing an App that involves authentication on the initial screen, and allows access to sensitive data on later screens. When the iPhone is locked, either with the lock button or through ...
5
votes
5answers
510 views
What is the right action to take upon closing JDialogs?
I just wrote this test code in my CustomUIPanel class:
public static void main(String[] args) {
final JDialog dialog = CustomUIPanel.createDialog(null,
CustomUIPanel.selectFile());
...
5
votes
2answers
559 views
Wicket: Close ModalWindow on keypress
I would like to be able to close a ModalWindow when the user presses a key, in my case ESC.
I have a Javascript listener for the keypress which calls the click event of the cancel button's ID:
...
5
votes
2answers
304 views
Should I keep a file open or should I open and close often?
Is it customary in such a case to open the file only once?
#!/usr/bin/env perl
use warnings;
use 5.012;
use autodie;
my $file = 'my_file';
open my $fh, '>>', $file;
say $fh "Begin";
close ...
5
votes
3answers
195 views
jquery show/hide divs and a counter
I have a random amount of DIVs (minimum 1, max of 10)
<div id="container">
<div class="foo">Content</div> <!-- div 1 -->
<div class="foo">Content</div> <!-- div ...
5
votes
2answers
3k views
jquery: How to completely remove a dialog on close
When an ajax operation fails, I create a new div with the errors and then show it as a dialog. When the dialog is closed I would like to completely destroy and remove the div again. How can I do this? ...
5
votes
5answers
1k views
Socket close in java
I have a socket tcp connection between two java applications. When one side closes the socket the other side remains open. but I want it to be closed. And also I can't wait on it to see whether it is ...
5
votes
1answer
526 views
.vimrc action onclose
is it possible to use something like an "vim-close/exit"-Event to execute some last commands before vim quits?
I use this lines in my config, to let vim set my screen-title:
if ...
4
votes
4answers
118 views
How to detect the JFrame is closed?
I tried a addWindowListener and implement the windowClosing, it works, when I press the close button, but when I use Cmd+Q to close, the windowClosing is not being called, how can I solve it? Do I ...
4
votes
3answers
116 views
Does one need to close both NetworkStream and TcpClient, or just TcpClient?
I'm reading this page and noticed this:
Calling this method will eventually result in the close of the associated Socket and will also close the associated NetworkStream that is used to send and ...
4
votes
2answers
124 views
Any cases Where close() is preferred to shutdown()?
I am a developer on an open source project and I have been having some problems with the server thinking it has answered a socket completely (meaning it has either sent a reply or closed it's end in ...
4
votes
1answer
140 views
Close Spinner on click outside of Spinner
I want to close an Android spinner once I click outside of the Spinner. Is that even possible?
4
votes
1answer
298 views
Why do I get “The handle is invalid” when waiting for a thread I've told to terminate?
How can I properly stop a thread when an application is closing?
I do this:
procedure TForm1.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
if not Thread1.Finished
then
begin
...
4
votes
3answers
960 views
Close urllib2 connection
I'm using urllib2 to load files from ftp- and http-servers.
Some of the servers support only one connection per IP. The problem is, that urllib2 does not close the connection instantly. Look at the ...
4
votes
1answer
424 views
How do web servers avoid TIME_WAIT?
I'm writing a simple HTTP server and learning about TIME_WAIT. How do real web servers in heavy environments handle requests from thousands of users without all the sockets getting stuck in TIME_WAIT ...
4
votes
2answers
174 views
Cannot Drop Database after Unit Test
ANSWER: I wasn't clearing my ConnectionPools.
The solved scenario is:
SetUp:
Check to see if the 'TEMP_NUnit' database (SQL Server 2005) exists on the local instance
If it exists, drop it.
Create ...
4
votes
3answers
718 views
C# close to tray (like msn messenger)
I have a c# .net app. So I created a notifyIcon that sits in the tray. What I want to do is when the user hits the "x" button on the form, I want it to close to the tray. They should only be able to ...
4
votes
3answers
2k views
Disabling Minimize & Maximize On WinForm?
WinForms have those three boxes in the upper right hand corner that minimize, maximize, and close the form. What I want to be able to do is to remove the minimize and maximize, while keeping the ...
4
votes
3answers
1k views
Javascript function, on web page close
I have an problem that i can not solve.
The problem is this way: When i close my page on some browser i want an message box to appear and to ask me if I really want to close the page or not.
...
4
votes
2answers
345 views
Java Socket Disconnect Reporting vs. C# Disconnection
in C# when a sockets connection is terminated the other node is informed of this before terminating the link thus the remaning node can update the connection status.
in Java when i terminate a ...
4
votes
1answer
933 views
When I get the Force Close dialog, I have a Report button. Where did it come from?
I feel a little bit silly asking this, but I haven't been able to find any answers on my own. My Force Close dialog has a "Report" button. I think it's a great idea, and I wish everyone had it. At ...
4
votes
6answers
342 views
Should I close sockets from both ends?
I have the following problem. My client program monitor for availability of server in the local network (using Bonjour, but it does not rally mater). As soon as a server is "noticed" by the client ...