The closing tag has no wiki summary.
-3
votes
1answer
40 views
Close blocking connections
I'm having a problem. When I try to start my TcpListener I am constantly getting an error telling me the port is already in use. Is there any way for me to close that connection programmatically? I ...
0
votes
0answers
25 views
App closing as soon as it loads, with no errors
One of my applications runs fine on my developing machine, although if I run it on another computer the app closes as soon as it loads.
I remember I got this problem one time when I didn't deploy the ...
0
votes
2answers
36 views
Losing Power While Writing to a File
I am working on a project for a device that must constantly write information to a storage device. The device will need to be able to lose power but accurately retain the information that it collects ...
0
votes
1answer
25 views
Wordpress is removing img closing tags
Wordpress is removing my image closing tag.
My HTML is:
/img.jpg" width="20" height="20" />
In Wordpress output looks like this:
/img.jpg" width="20" height="20" >
Can anyone help me?
Thanks in ...
0
votes
1answer
30 views
make applescript close keynote after presentation is over
does anyone know how i would achieve the following?
i want to make applescript close Keynote AFTER the slideshow is finished. any idea?
mybe via the class "playing" in keynotes application ...
0
votes
3answers
37 views
EventHandler with FormClosingEventArgs - C#
I have this closing form code in my Form.cs
public void label7_Click(object sender, FormClosingEventArgs e)
{
MessageBox.Show("Are you sure you want to exit?", "Confirmation", ...
0
votes
0answers
17 views
Pyqt4 Close Window
I am having a probelm with pyqt4...I have a main py which imports and makes a LoginWindow. Then in this LoginWindow there is a LoginButton. What I want is to close the LoginWindow by clicking the ...
1
vote
1answer
21 views
Sliding ScatterViewItems from table to close
currently I'm developing a project for the Pixelsense/Surface 2.0/Sur40. I'm wondering if it is possible to slide ScatterViewItems from the table. For me it is the most intuitive way to close an item. ...
0
votes
1answer
22 views
Div tag being prematurely closed
I'm working on a new webpage for my blog @ http://bornsquishy.ca
I'm also trying to use a grid system by http://gridiculo.us/
The problem that I'm having is the div class "grid" is being closed off ...
1
vote
2answers
30 views
Primfaces - Don't close dialog when messages appears
How can I set up a Primefaces Dialog to not hide, when there are "required-messages" open? At this moment, the dialog will closing by clicking on the "Speichern" Button, and when reopened, the ...
0
votes
1answer
62 views
Don't close MyApp
I made an App called MyApp to android that lists in a ListView the Apps that are installed in my device. When i click at a line in my ListView it opens the App that is pointed by this line.
If this ...
-5
votes
1answer
48 views
App keeps closing Unexpectantly? [duplicate]
Im trying to figure out what is causing the app to close, I've been searching through the code for about an hour. Its a skeleton of an app Im just revising and stuff.
AndroidManifest:
<?xml ...
0
votes
1answer
88 views
VB.NET Closing Excel
I'm extremely new to Visual Basic (and to this site) and need a little advice on how to properly exit Excel when using automation. A little background on my issue: we have a large Excel workbook that ...
1
vote
2answers
73 views
EventHandler with FormClosingEventArgs
I have this closing form code in my Form.cs
public void label7_Click(object sender, FormClosingEventArgs e)
{
MessageBox.Show("Are you sure you want to exit?", "Confirmation", ...
0
votes
2answers
97 views
DataInputStream
I have this code on Server side :
Server Side:
ServerSocket listenTransferSocket = new ServerSocket(6000);
Socket connectionTransferSocket = listenTransferSocket.accept();
...
0
votes
0answers
75 views
bxslider issue after closing colorbox in firefox
I have a problem in the current version of the firefox after the closing of the colorbox, if the bxslider is behind the center of the colorbox overlay.
The bxslider hides after the closing colorbox ...
1
vote
2answers
72 views
When window is opened? How to know window is opened without listening window events?
Example below allows window to be showed, hided, disposed and closed (by sending event).
Example showed, that window is opened only once -- on first set visible. Even if a window is disposed, and ...
1
vote
2answers
110 views
How to get a line as a structuring element in openCv?
I have a binary image and I want to perform closing on that image with the line as structuring element.
The openCv api has a function getStructuringElement that takes the following parameters
Shape
...
0
votes
3answers
34 views
Wrongly closing my jQuery script?
<script>
$("document").ready(function() {
$("em#tinkatag").hover(function() {
$(".tag.tinka").fadeToggle("slow", "linear");
});
$(".tag.tinka").hover(function() {
...
0
votes
0answers
139 views
FTP incorrect response to PASV command
Why does some FTP passive mode response sometimes changes in a way that the closing bracket is left out.
I expect the FTP response to PASV command to be:
227 Entering Passive Mode ...
0
votes
1answer
172 views
Indy, TidNotify and closing TidTCPServer
I have a TidTCPServer which use database manipulating inside onExcecute event (by using TidNotify). Everything works very good instead of possibility closing application.
During closing application I ...
0
votes
1answer
30 views
Searching for gtk widget
Is there any special widget in gtk+ that shows a set of tabs below the menu bar and has default "X" closing button (like in gedit). If there isn't, how to create one or where can I find it (in what ...
0
votes
0answers
51 views
App Keeps Force Closing After Changing To Holo Theme [closed]
I am modding an app using eclipse and i changed the 2.2 theme to the holo theme. and when i run it on the android emulator, it keeps force closing. Heres the logcat
02-01 22:58:52.904: ...
3
votes
3answers
84 views
Close the application before the form loads
I have a program wherein I will check if a file exists. If it does, the form will load. But if not, a messagebox will appear to inform the user, and then the application needs to close without showing ...
0
votes
0answers
58 views
Disposing objects before closing a form
I'm using nVLC .net wrapper for the VLC player.
I've created a normal main form for the main program.
Inside this program, a 2nd form can be opened to show a rstp stream in a panel
on the 2nd form ...
0
votes
1answer
225 views
how to show messagebox when wpf app closing?
I have a WPF app with MVVM pattern and it contains following 2 views:
1:MainWindow.xaml (it's a window)
below is main portion of MainWindow.xaml:
<Window.Resources>
<DataTemplate ...
0
votes
1answer
285 views
Gracefully closing a process in a remote Session
I'm currently working on a little PowerShell Script to reset a users Outlook Profile on a remote machine.
Before the necessary profile stuff can be done I want to check if Outlook is already running ...
1
vote
1answer
104 views
Is there a way to have FileChannels close automatically?
I am currently developing an application that requires random access to many (60k-100k) relatively large files.
Since opening and closing streams is a rather costly operation, I'd prefer to keep the ...
3
votes
1answer
209 views
Closing a GitHub Issue while on a different branch
I am not working on the Master branch. I am working on a different one newFeature , which is also published on github.
I know how to to close issues when working on the Master branch: Closes #XXX.
...
-1
votes
1answer
43 views
Crash when closing a refreshing thread
I made a music player that crashes every time I try to close it if I enable refreshing the thread every sec (refreshing is for updating the elapsed time of the song and the progressbar). Here is the ...
1
vote
0answers
145 views
Rabbitmq server connection closing abruptly
I have tried to use Rabbitmq server for some reason the connection closes abruptly even though I passed the correct username and password.
Rabbitmq server is running on port 5672 and telneting to my ...
2
votes
5answers
93 views
where to close the cursor?
i have a cursor that I am using in the following code. But I want to close the cursor after it is used and no longer needed. The problem is that the cursor is used in the return statement, but I ...
0
votes
1answer
97 views
Is it possible to prevent my Windows Phone app from closing?
Is it possible to prevent my WP7 app from closing? I know how to override the back button, but is it possible to do the same for the start and search buttons? I am aware that preventing it from ...
1
vote
2answers
56 views
issue with the closing the app
i am working on an android project and i have a little problem about closing problem.my question is i want to use text to speech before closing the app.but it just closes and not talks how can i fix ...
3
votes
2answers
163 views
Are there any cases where Application.Exit() doesn't raise the FormClosing event?
I've got a form where I handle the FormClosing event differently based on the CloseReason. For example I'm minimizing the form on CloseReason.UserClosing I'm programmatically calling the event when a ...
2
votes
0answers
95 views
C# FTP Request stream locks up thread
I am creating a C# app for transferring files over FTP. The code has worked flawlessly on 5 different systems all with decent internet access but I now have a 6th system that is having a problem ...
0
votes
0answers
257 views
Accounting: Fetching Closing Balance as Opening Balance
Here is our whole bunch of code.
We are developing a Ledger-like thing.
So, this can be the view:
CASH
MONTH: OCTOBER
...
0
votes
1answer
117 views
Single clicking on a select in Firefox immediately causes the options dropdown to close
For some reason, and only in Firefox, a select box with multiple options will immediately disappear after single clicking on the select.
The contents of the select aren't being constantly rewritten, ...
0
votes
1answer
89 views
Why am I get an application crash when I exit the application?
I have a problem with following simple code. I create GraphicView class which extends SurfaceView. I run it on another thread which starts at the onCreate method:
@Override
public void ...
2
votes
1answer
103 views
Thread class closing from other Class (Activity) with protected void onStop() Android
I have a Problem with Closing the Thread. I will Closing the Thread with onStop,onPause and onDestroy. This is my Source in the Activity Class:
@Override
protected void onStop(){
...
2
votes
2answers
253 views
outlook mailitem not closing properly
I have managed to open a new outlook mail item from c# code successfully using the following:
using Outlook = Microsoft.Office.Interop.Outlook;
Outlook.Application oApp;
Outlook.Inspectors ...
1
vote
1answer
238 views
During Silverlight ChildWindow closing animation user can click any button
I am developing a rich user interface using Silverlight 5. I have lots of ChildWindows.
Child Window has sort of buttons which are bound with Commands. I realized that if Child Window Close method is ...
1
vote
4answers
315 views
Prevent closing a window
How can I prevent window closing by showing a MessageBox? (Technology:WinForms with C#)
When the close event occurs I want the following code to be run:
private void addFile_FormClosing( object ...
4
votes
3answers
572 views
How to stop Python closing immediately when executed in Microsoft Windows
I have just started college and we are going to be using python. We really have done nothing so I have downloaded the program and done some print commands, and that's it.
When I run my .py file (a ...
0
votes
0answers
263 views
Same CURL request, results in different response for different origin servers
Recently I studied "How to prevent website to be crawled".
I take mangafox.me for example, I cannot crawl it's content.
Command line:
curl -v http://mangafox.me/manga/fairy_tail/v27/c227/1.html
...
-1
votes
2answers
119 views
Sending mail using PHP even if the browser is closed by client
I am making an eCommerce website.
If the client leaves the process of shopping with only one item in cart and clicks the checkout process then I need to send an email even if the browser is closed.
...
0
votes
2answers
110 views
WPF Window IsClosing bool
I want to have the same command when I click the "Cancel" button or when I close the window (ALT+F4 or click the x).
The problem is the command will eventually close the window that is in the ...
0
votes
1answer
57 views
copy attribute to closing tag
I have a huge xml file which I want to import into Excel. As part of this, I need the opening and closing tags to match.
this is a snippet of what I am starting with:
<FIELD ...
2
votes
2answers
140 views
allow Cancel when pressing “X” button
When the user presses the "X" in the Main Window, I have this dialog appear:
-- Save Changes --------------------------
| |
| Do you want to save changes? ...
0
votes
4answers
98 views
Closing previous pages in an application
I am making an application which has about 5 pages along with a starting screen, I am aware that if I write finish() in the onPause() method the page will get destroyed once the user goes to the next ...




