0
votes
2answers
678 views
Stuck on GenerateConsoleCtrlEvent in C# with console apps
I'm having the hardest time trying to get this to work, hoping one of you has done this before.
I have a C# console app that is running a child process which inherits its console. I want a ctrl-c …
1
vote
3answers
372 views
C# game design - main loop aborting - A better way than Abort() and ResetAbort()?
i have some C# threading program (a game), that stops with a boolean (as most articles recommends).
while (gameContinueRun)
{
createRound();
line1;
line2;
line3;
line4;
endRound();
}
…
0
votes
1answer
23 views
Rolling back identifiers NHibernate
I would like to get NHibernate to roll back the identifier of any entities saved during a transaction if the transaction is aborted. I am using NHibernate 2.1.0, and it doesn't do this by default. I …
1
vote
3answers
158 views
Ruby Command Line: How can I send the CTRL-C command via text in the command line?
Hi,
I am trying to create a simple Automator droplet that will take the style.less file dropped into it and run the following LESS command on it:
$ LESSC {DROPPED_FILE} --watch
which will monitor …
2
votes
1answer
92 views
jquery and xhr.abort
When aborting an ajax request with the xhr that's passed back from the jQuery.ajax function, firebug shows that it's still trying to load that request. It doesn't block any more requests that are …
1
vote
2answers
76 views
HttpWebResponse: closing the stream
I'm getting the response from an HttpWebRequest (using a modified version Jeff Richter's CCR wrappers), then inspecting a few of the headers in order to decide whether or not to continue the download. …
1
vote
1answer
226 views
How to abort a running program in MATLAB?
Sometimes after calling a function (which takes some 30 odd minutes to finish), you realize that you did something wrong and want to stop the program.
How do you do that in MATLAB?
What I do is …
2
votes
3answers
174 views
How do I abort a MATLAB m-file function from C/C++?
I deployed a MATLAB project into a DLL, to be called from C++, and it works just fine. Happy days.
But what happens when the user asks to cancel an operation?
I tried creating a global variable …
3
votes
5answers
154 views
Can a PHP script abort itself or detect abortion?
PHP scripts can continue executing after the HTTP page request, so how do I finally stop it executing when I'm done with it?
Also, is there an event to detect when the OS is going to forcibly abort …
1
vote
1answer
46 views
Can calling Abort() on an IClientChannel proxy throw an exception?
Based on documentation and articles it is recommended to call Abort() on a client proxy if an unexpected exception/fault is encountered. See the following (simplified):
MyServiceClient proxy = null;
…
5
votes
3answers
76 views
Cancel a running build process in VS
Is it possible to cancel/abort a running build process in Visual Studio 2008?
How?
1
vote
2answers
42 views
Spontaneous application execution abort in debug
A WPF application. Debugging. Stop on break point.
After few seconds Visual Studio (2008) spontaneously aborts the application execution.
It is never mind what I do after stop on break point: even if …
0
votes
4answers
153 views
Does .NET has an Exception that similar to Delphi’s EAbort ?
Does .NET has an Exception that similar to Delphi's EAbort ?
Currently, define my own "AbortProcess" inheriting Exception.
Together with My.Application.UnhandledException handler that ignoring …
2
votes
5answers
270 views
How do you cleanly abort a Delphi program?
I've got a program that's having some trouble during shutdown, raising exceptions that I can't trace back to their source. It appears to be timing-related and non-deterministic. This is occurring …
0
votes
0answers
67 views
Install Shield 2009 Premier: Abort installation if not admin user
Install Shield 2009 Premier: Basic MSI Project. I need to check if its admin user and if not showing a message box the installation will abort. How to do it ?
