Tagged Questions
The stop tag has no wiki summary.
31
votes
13answers
28k views
SQL Server - stop or break execution of a SQL script
Is there a way to immediately stop execution of a SQL script in SQL server, like a "break" or "exit" command?
I have a script that does some validation and lookups before it starts doing inserts, and ...
26
votes
3answers
18k views
prevent screen rotation android
I have one of my activities which I would like to prevent from rotating because I'm starting an AsyncTask, and screen rotation makes it restart. So is there any way to tell this activity "DO NOT ...
18
votes
4answers
11k views
Stop all active ajax requests in jQuery
I have a problem, when submitting a form all active ajax request fail, and that triggers error event.
How to stop all active ajax requests in jQuery without trigerring error event?
8
votes
2answers
1k views
Stop Internet access on the emulator android
Ok my question might appear a bit strange but here is my problem :
I am testing a database storage after retrieving data from the internet, then i would like to be able to start the emulator with ...
6
votes
5answers
992 views
Using gdb stop the program when it is using any function from file X
and I would like to know if there is any way to stop a program when is using a function from a certain file. Ideally what I am looking for is something like:
GDB Stop when use a function from file ...
5
votes
1answer
237 views
When to start and stop In-App Billing service?
A simple question, that I however can't resolve: when should I start and stop the billing service? I'm thinking about two decisions:
starting in onCreate and stopping in onDestroy
starting in ...
5
votes
6answers
197 views
Why is Python running my module when I import it, and how do I stop it?
I have a Python program I'm building that can be run in either of 2 ways: the first is to call "python main.py" which prompts the user for input in a friendly manner and then runs the user input ...
5
votes
4answers
4k views
Problems with MediaPlayer, raw resources, stop and start
I'm new in Android development and I have the next question/problem.
I'm playing around with the MediaPlayer class to reproduce some sounds/music. I am playing raw resources (res/raw) and it looks ...
5
votes
2answers
799 views
Visual Studio 2008 SP1 - How to stop debugging in other browsers than IE?
Visual Studio has integrated debugging in IE, when you close IE, it stops debugging, and if you stop debugging, VS closes IE.
I want it to do the same thing with firefox/chrome! (mainly this 2, if is ...
5
votes
5answers
797 views
Python equivalent of IDL's stop and .reset
I'm relatively new to python but have a bit of experience using IDL. I was wondering if anyone knows if there are equivalent commands in python for IDL's stop and .reset commands.
If I'm running some ...
5
votes
4answers
7k views
How to close a browser on a selenium RC server which lost it's client
suppose a client starts a selenium session on an RC server, but at the middle of the session the client "went away". The browser will remain open, and eventually, after enough such dropped sessions, ...
4
votes
3answers
1k views
How to stop Jenkins installed on Mac Snow Leopard?
I have installed Jenkins using .dmg file in MAC (10.6.8).
Installed directories:
Users/Shared/Jenkins - with all the plugins, war, jobs, usercontent, etc.
Applications/Jenkins - which is ...
4
votes
4answers
3k views
AS3 Stop external swf
Hi I'm loading an external swf into a MovieClip, and I want it to stop until I choose to play. Currently it plays upon loading immediately.
var mc:MovieClip;
var swfLoader:Loader = new Loader();
...
4
votes
2answers
14k views
Android - Service wont stop?
I currently have a Service that runs fine when I start it but when I try to stop it using the stopService method its onDestroy method doesn't get called.
Here is the code I use to try to stop the ...
3
votes
2answers
58 views
Android doesn't terminate ASyncTask thread after onPostExecution
I have an instance of ASyncTask in my application which is used to log a user into the application, the problem is that when the ASyncTask as executed the "onPostExecution" function, the ASyncTask ...
3
votes
3answers
70 views
Should threads have special design to be shutdown gracefull by Tomcat?
I have developed multithreaded web application that runs in Tomcat.
But I cannot use
shutdown.bat
Tomcat didn't stop graceful. I debugger I see that threads continue run after shutdown command. ...
3
votes
1answer
63 views
How to stop a JavaScript program that is being debugged in Chrome?
Ok, I've fired up my debugger in Chrome and I've placed a breakpoint just before an Ajax call to examine the variables on the stack. Hmmm, I notice that one of them is not right. At this point I'd ...
3
votes
5answers
68 views
Stopping jQuery from doing its thing?
I have this code.
$(document).ready(function() {
$('#box').hide();
$(window).bind('scroll', function(){
if($(this).scrollTop() > 200) {
$("#box").fadeIn(300);
}
else {
...
3
votes
1answer
119 views
Clip.stop() freeze for few seconds
I have a class Sample and Clip inside, written in Java. I'm playing it in loop:
public void play() {
clip.loop(Clip.LOOP_CONTINUOUSLY);
}
I have also a stop method:
public void stop() {
...
3
votes
1answer
138 views
How do you stop browser from 'hourglassing' when Javascript is DONE (stop throbber)?
Writing a small HTML web page with some very simple Javascript in it, I noticed that after it was done, it kept the circle spinning (firefox). I've seen that many times on other pages and always ...
3
votes
2answers
150 views
Stop a Function, jQuery
I'm using this blink function
(function($)
{
$.fn.blink = function(options)
{
var defaults = { delay:500 };
var options = $.extend(defaults, options);
return ...
3
votes
0answers
387 views
Find out what MediaPlayer is playing and stop it onPause or onStop?
Does anyone know a good way to find out what MediaPlayer is currently playing and stop/pause it using the onStop or onPause override? Or just stop MediaPlayer when the app is in the background? I have ...
3
votes
2answers
1k views
How do I stop Tornado web server?
I've been playing around a bit with the Tornado web server and have come to a point where I want to stop the web server (for example during unit testing). The following simple example exists on the ...
3
votes
1answer
244 views
How do I stop (not kill) an Activity to trigger an onRestart()?
I'm working on an Android application. Our problems manifest when the user runs our app, navigates away via the home or back button, and comes back later. From the official Android activity lifecycle ...
3
votes
2answers
353 views
Stopping SQL code execution
We have a huge Oracle database and I frequently fetch data using SQL Navigator (v5.5). From time to time, I need to stop code execution by clicking on the Stop button because I realize that there are ...
3
votes
2answers
432 views
jQuery using stop() with hide()/show()?
Hey guys,
I wonder if it's somehow possible to use the stop() function (I normally use on animate()) with hide() or show().
if I quickly hover repeatedly over a div which uses show() to display some ...
3
votes
6answers
741 views
Stopping looping thread in Java
I'm using a thread that is continuously reading from a queue.
Something like:
public void run() {
Object obj;
while(true) {
synchronized(objectsQueue) {
...
3
votes
3answers
730 views
Android: Stopping method to be called twice if already running
I'm trying to prevent my application to call the same method twice in the event of a double-click, or if the user presses different buttons quickly, almost at the same time.
I have clickable Views, ...
3
votes
1answer
547 views
Shortcut to stop execution of program in netbeans
I am using netbeans to code java and i was wondering if there is an option to have a program stopped by pressing a shortcut. I can press F6 to execute program, but I have to use mouse to stop program, ...
3
votes
3answers
5k views
Stopping timer in its callback method
I have a System.Threading.Timer that calls its appropriate event handler (callback) every 10 ms. The method itself is not reentrant and can sometimes take way longer than 10 ms. Thus, I want to stop ...
3
votes
5answers
11k views
Tokenizer, Stop Word Removal, Stemming in Java
I am looking for a class or method that takes a long string of many 100s of words and tokenizes, removes the stop words and stems for use in an IR system.
For example:
"The big fat cat, said ...
3
votes
6answers
2k views
How to stop threads of a Java program?
I have made a java program with GUI and have placed a "stop" button on it. When I start the program, the main thread starts 10 threads. Now I want that whenever a user click on "stop" button, all the ...
3
votes
3answers
10k views
Start And Stop Windows Service remotely using PSEXEC
How to start and and stop a windows service remotely using PSEXEC
Preferable the syntax to write I tried the cmdlet given below
psexec \Server -u Administrator -p Somepassword ServiceName
Please ...
3
votes
10answers
2k views
What is the Best Practice for Combating the Console Closing Issue?
After compiling console programs the console window closes immediately after running. What is the best practice for keeping it open? I've searched google loads, I'm used to codeblocks where you don't ...
3
votes
3answers
2k views
Jquery ui, call start drag manually
In Jquery UI I can configure an element as draggable by invoking
$("#drag").draggable();
But is there a way to start and stop the drag functions manually from another function? Ie
...
3
votes
5answers
3k views
Stopping a Thread in Java?
I'm in the process of writing a piece of code that connects to a server spawns a bunch of threads using that connection and does a bunch of "stuff".
There are certain instances where the connection ...
2
votes
0answers
39 views
php script stops right after a simple return statement
Hello fellow programmers,
I have made a function that looks up the database if a login already exists and then returns either true or false, here is the body of this function:
public static function ...
2
votes
1answer
45 views
Stopping a jQuery event function from
I posted a question yesterday which was answered, sadly though I now have a new issue with the said code and am looking for some kind soul to point me in the right direction so I can learn how to get ...
2
votes
1answer
40 views
How to stop() animation but allow current one to complete
Using jQuery 1.7.2
$(function(){
$('#parentElem').mouseenter(function(){
$('.myElem').animate({opacity:1}, 'fast');
}).mouseleave(function(){
...
2
votes
4answers
101 views
C# how to stop the program after a certain time?
I have a big problem, but probably it's only big for me :). "terminal.Bind(client);" this line causes my program to hang if IP is bad. I want to stop this program after 5s working because if IP is ...
2
votes
2answers
186 views
AS3 Character only stops at walls in one direction
I tried almost everything to make my character stop when it detects a wall.
It only works for UP and RIGHT or DOWN and LEFT but not all 4 directions, so only one y movement and one x movement.
So I ...
2
votes
2answers
293 views
AS3 Stop character from moving through walls
I want to stop the movieclips movement when it hits a wall (another movieclip).
The example below works, but after the collision the movieclip 'blocks' all movement to the left...
My question to you ...
2
votes
0answers
51 views
How to stop webserver (implemented through web.py and threading)
I have implemented simple webserver using web.py.
And through multithreading module, I am able to run multiple instances of webserver listening on separate ports.
Now all the instnces are listening ...
2
votes
6answers
217 views
Does “return” stop the execution of a method?
I have programmed a method in the following way:
if (something) {
return 1;
}
the rest of the code
It seems to me that the method returns 1 and then execute the rest of the code. Can it be the ...
2
votes
1answer
180 views
stop looped powershell script and kill remote processes initiated by it
i have a script that kicks off a remote job via invoke-command -asjob on 20 servers to run a legacy command line application. It might take a few hours to run it so I used foreach loop until I have 0 ...
2
votes
1answer
204 views
How can I stop/restart listening and accepting on a server socket in Winsock2 C++?
I made a socket (Winsock2) in Visual Studio Pro C++ to listen on a port for connections (TCP). It works perfectly, but I let it run in its own thread, and I want to be able to shut it down with the ...
2
votes
2answers
688 views
JQuery floating div stop after scrolling down certain div
Please check this link
http://jsfiddle.net/sasindu555/xaYTt/
I want to stop floating special_features div after scrolling down stop div. How do that. Please help me. Thanks.
2
votes
3answers
789 views
Youtube api - stop video
I need some help with Youtube API and embeded videos.
I want to stop video when clicked on some element (div,link,td etc.). I am trying to get it work just for 1 video now, but the final function of ...
2
votes
1answer
98 views
How to clear interval of clicked element
I am using http://www.antiyes.com/jquery-blink-plugin for blinking images on my document.
Code of that plugin is
(function($)
{
$.fn.blink = function(options)
{
var defaults = { delay:500 ...
2
votes
1answer
454 views
How to stop and play jquery script
I'm using slidesjs to create 5 different slideshows/galleries on a single-page site. They all have the class '.slides' and have their own ID.
I do not want any of the slideshows to play until a play ...