The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
3k views

Windows SuspendThread doesn't? (GetThreadContext fails)

We have an Windows32 application in which one thread can stop another to inspect its state [PC, etc.], by doing SuspendThread/GetThreadContext/ResumeThread. if ...
2
votes
6answers
7k views

UIApplicationExitsOnSuspend anything else I'm missing?

So I know this has been beaten to death but I still can't figure out a solution. I have my UIApplicationExitsOnSuspend set to <true/> in the Info.plist and still both in the simulator as well ...
0
votes
0answers
140 views

Need help getting Suspend to work in Ubuntu on laptop

I've been doing a lot of research, but I've got to admit right out front that I'm not even sure exactly what is the right question. I've installed Kubuntu 10.4 on a Panasonic Toughbook CF-29. When I ...
0
votes
2answers
63 views

What is the best way to avoid SpamCop trigger a ASP.NET web page?

Good Days, I have recently developed a web application in ASP.NET for a marketer that he has been sending emails to his potential customers to fill out a web form existing in this ASP.NET ...
1
vote
1answer
919 views

How to turn on monitor after wake-up from suspend mode?

I need wake up PC from sleep to perform some actions - from C#. I've used CreateWaitableTimer functions, everything goes fine, at given time PC wakes up - but monitor stays in power save mode (turned ...
4
votes
3answers
266 views

Java threading problem

I'm using multiple threads in my application. Basically I have a combo box and upon selecting Inbox, p1 resumes and p2 is suspended and upon selecting Send, p2 starts and p1 stops. Below is the code ...
3
votes
2answers
2k views

C# How to pause/suspend a thread then continue it?

I am making an application in C# which uses a winform as the GUI and a separate thread which is running in the background automatically changing things. Ex: public void run() { while(true) ...
0
votes
2answers
164 views

Biztalk forced suspense?

I am getting the error: This service instance was suspended by a BizTalk administrator. However I didn't force a suspense and it's on my local machine. I get this message all the time with ...
0
votes
1answer
564 views

Does CallNtPowerInformation(SystemPowerInfomation…) work on WIndows XP?

I'm trying to access the "TimeRemaining" value for the power management idle counter. Google search indicates that lots of folks (including me) can get a value once, but every subsequent call gives ...
2
votes
2answers
14k views

SQL Server - Why would my SPID be “SUSPENDED” but not blocked, while creating an index?

I have a SQL 2005 x64 server, and when I attempt to issue some queries against it (for example, when I try to create an index), my SPID goes to "sleeping" immediately, and seems to wait there ...
4
votes
3answers
346 views

How to save a program's progress, and resume later?

You may know a lot of programs, e.g some password cracking programs, we can stop them while they're running, and when we run the program again (with or without entering a same input), they will be ...
3
votes
1answer
455 views

How does transaction suspension work in MySQL?

In the Spring Framework manual they state that for a PROPAGATION_REQUIRES_NEW the current transaction will be suspended. What does that "suspended transaction"? The timer for the timeout stops ...
7
votes
4answers
5k views

Delphi thread that waits for data, processes it, then resumes waiting

I need to create a thread in Delphi with the following characteristics: Waits until the main thread adds data to a shared queue. Processes all the data in the queue, returning the results to main ...
0
votes
2answers
2k views

Why does SetThreadExecutionState(ES_SYSTEM_REQUIRED) prevent display power-off? [closed]

I'm attempting to keep the system on while allowing the display to power off, to allow a download to finish while the system is unattended. To achieve this I call: ...
2
votes
4answers
952 views

Resuming C# threads

Possible duplicate question: http://stackoverflow.com/questions/142826/is-there-a-way-to-indefinitely-pause-a-thread In my code i do the below Thread mainThread //... mainThread.Resume(); void ...
0
votes
1answer
92 views

Request suspend on Vista but allow other applications to cancel

My application uses the Win32 SetSuspendState() API to trigger system suspend or hibernation when it has finished doing a lengthy task. The API accepts a parameter "ForceCritical" which determines ...
5
votes
2answers
15k views

Suspended status in SQL Activity Monitor

What would cause a query being done in Management Studio to get suspended? I perform a simple select top 60000 from a table (which has 11 million rows) and the results come back within a sec or ...
3
votes
2answers
1k views

JScript Wait function

I have a function written in JScript (Not javascript) I need to suspend until a certain global variable becomes true. The global variable is changed to true when another function is called after an ...
4
votes
3answers
1k views

Suspending the execution of a remote process (C, Windows)

I can suspend a thread of another process by using SuspendThread(). Is there any way to also suspend the execution of that process altogether? If yes, please post code. Thanks. PS: Since you will ...
1
vote
8answers
377 views

Temporarily suspend the PC operating system

How does one programmatically cause the OS to switch off, go away and stop doing anything at all so that a program may have complete control of a PC system? I'm interested in doing this from both an ...
1
vote
2answers
544 views

OS X Process control

I'm writing a process-controller kernel extension for leopard. The application enables me to suspend process's with SIGSUS and to make the computer sleep. My problem is when an application that uses ...
1
vote
2answers
7k views

Bash date/time arithmetic

I have a little Bash script which suspends the computer after a given number of minutes. However, I'd like to extend it to tell me what the time will be when it will be suspended, so I can get a ...
0
votes
3answers
913 views

How to Suspend a button event in C#?

In my application I want to suspend a button event for some time so that I can fire another event after which the first button event will resume. In c# I am not getting how do I perform it using ...
0
votes
4answers
995 views

WASAPI prevents Windows automatic suspend?

First time poster, be gentle ;-) I'm writing an audio app (in C++) which runs as a Windows service, uses WASAPI to take samples from the line in jack, and does some processing on it. Something I've ...
1
vote
5answers
5k views

How can I detect suspend on Windows Mobile?

We are seeing some occasional data loss with our application on Windows Mobile, and we suspect that some buffered data is not being flushed to disk when the device is suspending. We would like to ...
2
votes
2answers
6k views

How can I run code on Windows Mobile while being suspended?

I'd like to run some C++ code while the Windows Mobile PocketPC is (or seems) being suspended. An example what I mean is the HTC Home plugin that shows (among others) a tab where the HTC Audio Manager ...
0
votes
1answer
430 views

MFC, c++ When showing and hiding ctrls on the screen can I disable paint for a bit

I have a screen with say 20 controls on it. I want to show all twenty, then hide only the ones that don't relate to what I'm working on. psudoCode. for each element show element for each ...
6
votes
5answers
3k views

WinForms: Best way to suspend control events?

This seems like a very simple and a very common problem. The simplest example I can think of is this. The form has 5 checkboxes with a "check all/check none" checkbox above them. When a user selects ...

1 2 3