The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
25k views

Android - Controlling a task with Timer and TimerTask?

I am currently trying to set up a WiFi Scan in my Android application that scans for WiFi access points every 30 seconds. I have used Timer and TimerTask to get the scan running correctly at the ...
10
votes
2answers
6k views

Android Notification intent to clear it self

I have read many examples of how to create notification messages. What i wanted to achieve, is because the notification will be executed by a widget, i would like the notification intent when clicked ...
9
votes
3answers
87 views
+50

IE alternative to window.stop() (cancel all pending requests)

I'm looking for an alternative to window.stop() for IE. I have tried document.execCommand('Stop'), but it doesn't seem to work. I'm trying to cancel a XMLHttpRequest which is called from within a ASP ...
9
votes
6answers
3k views

How to cancel a jquery.load()?

I'd like to cancel a .load() operation, when the load() does not return in 5 seconds. If it's so I show an error message like 'sorry, no picture loaded'. What I have is... ...the timeout handling: ...
8
votes
2answers
284 views

How can I cancel an asychronous delegate in C# 3.5?

I have searched google up and down but I can not find nearly any proper information about that topic. What I wanna do is this: User types a single search-string in a textbox. I wait 0.5 s then I ...
7
votes
7answers
302 views

Cancel split window in Vim

I have split my windows horizontally. Now how can I return to normal mode, i.e. no split window just one window without cancelling all of my open windows. I have 5 and do not want to "quit", just want ...
7
votes
6answers
3k views

How to skip Validating after clicking on a Form's Cancel button

I use C#. I have a Windows Form with an edit box and a Cancel button. The edit box has code in validating event. The code is executed every time the edit box loses focus. When I click on the Cancel ...
5
votes
1answer
146 views

Concurrency - interrupting a Future without cancelling it

Is there any way to interrupt a Future without cancelling it? java doc API: boolean cancel (boolean mayInterruptIfRunning) Attempts to cancel execution of this task. This attempt will fail if ...
5
votes
3answers
300 views

Cancel a running build process in VS

Is it possible to cancel/abort a running build process in Visual Studio 2008? How?
5
votes
6answers
5k views

How can I cancel a user's WPF TreeView click?

I've got a WPF application with a Treeview control. When the user clicks a node on the tree, other TextBox, ComboBox, etc. controls on the page are populated with appropriate values. The user can ...
4
votes
2answers
263 views

Stopping an asynchronous stream outside of the AsyncCallback function

I've got a Stream object and I am using BeginRead to begin reading (obviously) into a buffer; the AsyncCallback function is called once the reading is complete. Within this function I can check if the ...
4
votes
1answer
289 views

How to cancel TCP file transfer c#

I have a receiver and sender client that pretty much transfer files. This is what I have so far on the receiver: Thread t1; int flag = 0; string receivedPath; public delegate void ...
4
votes
3answers
458 views

C#: Is it possible to cancel a linq2sql query?

Is it possible to cancel a linq2sql query? Like if I have built a query that takes a while to run, I would like it to be possible for the user to cancel it. Does anyone have any good ideas on this?
4
votes
5answers
871 views

call a function when the program is finished with ctrl c

I am working in the Linux environment, and I have a C++ program, what I want is when I cancel the program with ctrl+c I would like that the program executes a function, to close some files and print ...
3
votes
2answers
45 views

Cancel an already executing task with Celery?

I am new to Django and Celery. I have been reading the doc and searching but cannot seem to find a straight answer: Can you cancel an already executing task? (as in the task has started, takes a ...
3
votes
5answers
2k views

Android: Cancel Async Task

I use an async task to upload an image and get some results. While uploading the image I see a progress dialog, written in onPreExecute() method like this: protected void onPreExecute() { ...
3
votes
1answer
806 views

How to stop an IntentService?

I use an IntentService to handle large file-downloads in my app. But when i want to cancel the download i call stopService(intent). However the onDestroy() method is been called but the download ...
3
votes
3answers
168 views

Abort keystroke sequence?

When using Vim I sometimes find myself midway through entering a key combination and change my mind or realise it's incorrect (I'm still learning). For example I may have typed d, 4 and be about to ...
3
votes
2answers
2k views

WinForms Validating event prevents Escape key closing the form

I have a simple Form with a single TextBox, plus OK and Cancel buttons. The Form's AcceptButton and CancelButton are set correctly, and the OK and Cancel buttons have their DialogResult set to 'OK' ...
3
votes
1answer
736 views

JQuery sortable, dragging between two lists, cancelling the drop: How to animate?

I have two HTML lists, and am using JQuery sortable to drag between them. This works perfectly. The receive event is raised upon dropping a dragged list item into the second list. In this event ...
3
votes
5answers
188 views

Efficient Cancel Event Implementation for Number Crunching Threads

What is the most efficient way to create a “cancel” event in a C# program that is crunching a large set of data in a loop on a separate thread? For now, I am simply using a cancel event that is ...
3
votes
3answers
1k views

What's the best way to cancel an asynchronous WCF request?

(Assuming a WCF method called "MyFunction") Currently, to support canceling a WCF request, I'm using the BeginMyFunction/EndMyFunction methods generated by svcutil (and handling an isCanceled flag ...
3
votes
5answers
215 views

Cancellable Sort in .NET?

I'm using ListView in VirtualMode to show extremely big number of rows, millions of rows. The data of the rows stored in a Generic List. Now i want implement a sort feature, that will sort the List ...
3
votes
2answers
1k views

ASP.NET MVC: The correct way to handle a cancel button

I'm wanting to have a simple cancel button so on confirmation of, say, the deletion of a product, they can change their mind and click cancel before the actual delete action is started. I figure that ...
2
votes
2answers
170 views

How do I cancel an asynchronous operation in Silverlight/WCF?

I am calling an asynchronous service from my Silverlight app and I want to be able to cancel that call after it is made. There is an option for e.Cancelled once the service has finished (i.e. If ...
2
votes
2answers
189 views

How to Cancel an Akka actor?

I have an akka actor(worker) that receives a request and replies to it. The request processing can take 3-60 minutes. Caller(also an actor) is currently using !!! and waiting on future.get, however ...
2
votes
2answers
124 views

How do I know where a control will be docked, and how do I prevent the docking?

I’m using Delphi’s 'regular' docking (with DockSite = True and UseDockManager = True). Now there’s several DockSite controls, and several dockable forms. However, not each dockable form is supposed ...
2
votes
1answer
170 views

how to cancel the vba followhyperlink?

I have an excel worksheet with some hyperlinks. Some of them are email addresses. When a user clicks a hyperlink, I determine whether or not it is an email, using Worksheet_FollowHyperlink(ByVal ...
2
votes
2answers
227 views

How can I cancel/stop uploading of a file in IE javascript

I have a page with two forms. One of them is not visible and contains input type="file". I am uploading file with the hidden form(target of the form is an iframe element). My question is how to ...
2
votes
3answers
107 views

How should I stop a “in progress” jquery POST?

I have a jQuery ajax post, where I upload big files with POST. I want to give to user the ability to cancel the submit, clicking a button, while the submit is in progress. How can I do this ?
2
votes
2answers
132 views

Opencv Resize Cancel/Stop

Can you cancel/stop a resize function? Say if it is resizing an image for 4 seconds and I would like to cancel it after 2 seconds (timing does not matter) because I do not want to resize this ...
2
votes
4answers
782 views

How to cancel button tap if UIGestureRecognizer fires?

Update: The problem seems to be the dependency on another GestureRecognizer to fail. See comments and test project below this question! Hi, in my iPhone app I have a view with multiple UIButtons as ...
2
votes
1answer
657 views

Android Notification Delete

I have developing an App where the user can create event and set notification for that very event. I am using the following code. final Notification notifyDetails = new Notification(R.drawable.icon, ...
2
votes
2answers
502 views

How do I add a cancel button to my jqgrid?

I've got a jqgrid (version 3.5.3) on my site which gets its results from an ajax call to a web service. Often the query is complicated and it takes a few seconds to load the result. While it is ...
2
votes
1answer
200 views

.Net Treeview Event Handling

I am in the process of migrating a VB6 app to .Net and we must provide like-for-like functionality at all times. In one form is a treeview with checkboxes that has three levels of nodes. The first ...
2
votes
3answers
244 views

How to cancel jQuery UI dialog open?

I have the following: container.dialog().bind('dialogopen', function(event, ui) { ... if (someCondition) { $(this).dialog('close'); // the dialog is not closed! } } ...
2
votes
3answers
1k views

How to make a listener for a datepickers cancel button in Android?

I'm using a datepicker in Android to let the user to choose the date. I want it to do one thing if the user picks a date and sets it (I have that working fine) and then to clear a certain text field ...
2
votes
2answers
309 views

Possible to cancel paging in ListView using DataPager

I'm using a datapager control on my listview to perform paging in it. When paging through the table, I need to perform some validations. When these validations are not successfull, the paging should ...
2
votes
2answers
419 views

Java Multithreaded App - how to dynamically cancel Futures objects

I think this is a common scenario for multithreaded Java applications so I'll try to describe it here. In my Java App I've a threadExecutor object that defines a Pool of 5 Threads. ExecutorService ...
2
votes
1answer
153 views

Symfony Migration - Remove mandatory from column

I would like to cancel the mandatory of a field of my current schema. How can I accomplish that with a symfony migration? Thanks in advance, Best regards!
2
votes
5answers
1k views

Kill JQuery AJAX overlapping requests

Is it possible to kill a previous ajax request? We have tabular data very adjacent to each other. On mouseover event of each data we are making a request to our server using JQuery Ajax object and ...
2
votes
1answer
670 views

cancel hibernate query

If user press the "search" button and then they desided to do "something else", we have to cancel already running query. We use Hibernate (and Oracle) as persistence solution. Hibernates Session ...
2
votes
1answer
204 views

Hudson cancel do not cancel all processes

I'm working with hudson v 1.323 installed as a Windows service on Windows XP. I'm building with a shell script that looks like this: #!c:/cygwin/bin/sh export PATH=/cygdrive/c/cygwin/bin:$PATH make ...
2
votes
5answers
5k views

how to handle push notification if application is already running?

how do we handle push notification if app is already running? means i want to show an alert if app is running instead of push notification alert.if app is not running then show push notification ...
2
votes
4answers
1k views

Jquery star rating plugin and cancel rating button

Using this plugin: http://www.fyneworks.com/jquery/star-rating/#tab-Testing I have a simple callback function that picks up the id from the radio buttons: <input type="radio" ...
2
votes
3answers
232 views

How to abandon a long-running search in System.DirectoryServices.Protocols

I've been trying to work out how to cancel a long-running AD search in System.DirectoryServices.Protocols. Can anyone help? I've looked at the supportControl/supportedCapabilities attributes on ...
2
votes
1answer
2k views

Jeditable CANCEL callback from AJAX callback?

I see some answers for the Jeditable plugin to use a callback function from AJAX using complete callback function. I know that the Jeditable has a callback function for the SUBMIT button, so I would ...
1
vote
2answers
64 views

Usage of mayInterruptIfRunning to cancel ASyncTask - Function call order -

When I call cancel(false) to stop my ASyncTask, I find that the onCancelled() function is called even before I was able to detect the task is being cancelled in doInBackground() using isCancelled(). ...
1
vote
2answers
100 views

CancellationTokenSource misbehaviour

I have a problem when i wait for a task after i have canceled it with the CancellationTokenSource. The cancel call does not interrupt the task. When i wait for the task the main thread blocks because ...
1
vote
0answers
24 views

Facebook Send button issue

I am using XFBML facebook send button in a application This works fine, but the cancel button the poped is not working no errors displayed.

1 2 3 4