Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
8k views

Android Sleep/Standby Mode

I have made an app that starts a service, which starts a timer, which fires off a small function after an amount of time. This is working great on the emulator and on the Motorola Droid 1, but it ...
6
votes
2answers
468 views

Detecting USB power state

Windows has the option of powering down certain peripherals, such as USB ports, to save power (this behavior can be enabled/disabled via Device Manager). The power down happens under various ...
5
votes
1answer
68 views

How can I determine why the machine came out of suspend?

I'd like to be able to determine, programmatically, why a Vista system came out of standby (S3). Any language is fine, though a .NET one would be best. I'm looking to put this code into an ...
3
votes
2answers
522 views

What is the difference between scheduler's standby() and pauseAll()?

I'm using Quartz Scheduler v.1.8.0. What's the difference between scheduler.standby() and scheduler.pauseAll()? standby() - Temporarily halts the Scheduler's firing of Triggers. ...
2
votes
2answers
120 views

How do you re-duplicate a broken physical standby database?

first some data: we are using Oracle 11g databases. A primary database running on a dedicated server and a physical standby database on a separate dedicated server. We use the DataGuard feature to ...
2
votes
2answers
379 views

How to initiate standby/sleep from command-line?

I have found a lot of info about how to shut down computer, put it in hibernation etc via the command line, however, any tips i have read about getting it to sleep as it does from the start-menu has ...
2
votes
2answers
2k views

Android - Wake lock not acquiring properly, app needs to keep running in standby

In my app, in the onCreate() method of the main activity I am creating a wake lock so that the CPU will keep running if the phone goes on standb/screen turns off. Also in the onCreate method I have ...
1
vote
1answer
335 views

Android : AudioHardware pcm playback is going to standby

In my HTC Desire (Froyo) , I initiated a call from the a android app and when the call ends, my android app gone to standby mode by showing " AudioHardware pcm playback is going to standby " in log ...
1
vote
2answers
305 views

Receive event before Windows enters standby or hibernate using Win32 API

I'm working on a small chat application written in C++/Qt. My users are complaining that the connection is not shut down gracefully when they are closing the laptop lid and the computer enters ...
1
vote
2answers
286 views

Tell Windows XP to Standby programmatically

How can I tell Windows XP to switch to standby mode programmatically with C/C++ native code?
1
vote
2answers
1k views

Wifi just goes into IDLE

I have written some software which uses Wifi as a possible internet-connection medium.. I did notice though, that after some time (I am guessing around the 15-20 minutes) after the device has gone ...
1
vote
1answer
352 views

Win32 API prevent standby

What is the Win32 api function that prevents the system from going into standby? Some programs use it, which is pretty annoying in my opinion. I know there's a couple of WM_SYSCOMMAND messages you ...
1
vote
1answer
578 views

C# - How to Suspend to RAM and wakeup

I want to make a utility that will allow the system to use the Suspend to RAM feature and also have the ability to wakeup at a certain time. Is this possible and how can I do this? Code snippets ...
1
vote
2answers
583 views

How do we check if the iphone is on standby mode?

How can we check if the iphone has gone into a standby mode and returns from that mode programmaticlly? I am using this to force it not to sleep during the game: application.idleTimerDisabled = YES; ...
1
vote
1answer
380 views

WPF application crashes when going into standby

I have a WPF application. It runs ok, but when the computer goes into "Stand by" mode it crashes, with an unknown exception. this might have something to do with the fact that my window is ...
1
vote
2answers
312 views

Programmatically find out if system supports standby

This happens sometimes with Windows XP installations. Unless the display drivers are installed, power saving actions such as standby and hibernate are not supported. Whether the system supports ...
1
vote
6answers
772 views

iPod app stops responding after iPod returns from standby mode

The GUI of my application stops responding after the iPod has been in standby mode. The application I have made is based on the "Utility application" template from the wizard in xcode - but the ...
0
votes
0answers
20 views

Standby Clock / Sleep Clock Android

How to display a digital clock while the mobile is in standby mode. I want to launch the clock as the device goes into sleep / standby mode and the app will get activated till the user dont press home ...
0
votes
0answers
48 views

Android widget - Application TwLauncher not responding when entering standby

I have a widget that counts down to an event. When my phone enters in standby (the screen goes black) I get this error: Application TwLauncher (in process com.sec.android.app.twlauncher) is not ...
0
votes
1answer
53 views

Show notification Alarm Manager / Wake Lock / Sleep (local notification in Android)

I want to display a notification / alarm with the terminal in "sleep mode / standby". As does WhatsApp, Handcensms ... Or the simple alarm clock. For example, in IOS is called "local notification" ...
0
votes
1answer
53 views

server can't close socket connection with iPhone when iPhone is in standby mode

I use AsyncSocket to establish tcp connection via Wifi to a server, and after 10 seconds, the server will actively close the connection. When the iPhone is not in standby mode, the connection will ...
0
votes
1answer
98 views

Iphone application Blow into mic to put in standby mode

I am building a simple application to blow into the iPhones microphone, and have it then put the iphone in sleep mode how would I go about starting an application like that if I already have the UI ...
0
votes
0answers
33 views

Postgres 9.0 Binary Replication - Can Archive Mode be turned on for Standby Server?

I am setting Postgres 9.0 binary replication & Archive backup. For Archiving on Master, I have these options: a) Copy archive to it's local backup location b) Copy to a share network location ...
0
votes
1answer
88 views

android: standby button, the touch locks and the phone remains active

I would like to make an application when it is activated by pressing the standby button, the touch locks and the phone remains active . Which method should I use to do this and to take control of the ...
0
votes
0answers
32 views

android: I wanted to ask how you have control of the standby button? which method to use to control when you press?

I wanted to ask how you have control of the standby button? which method to use to control when you press?
0
votes
2answers
265 views

What's the best between AlarmManager and Handler+WakeLock?

I'm using for my Android Service an Handler that reapeat some operation each 60 minutes (1 hour), with a PartialWakeLock to keep the phone not sleeping. But this cause a lot of battery usage. So a ...
0
votes
2answers
524 views

Call Intent.ACTION_DIAL from a Tab layout

How can we call Intent.ACTION_DIAL from a tab layout My code is Resources res = getResources(); // Resource object to get Drawables TabHost tabHost = getTabHost(); // The activity TabHost ...
0
votes
0answers
18 views

Replicating peculiarities with specific Android versions

There's a bug in the android code that makes sensors unavailable while the device is in standby. Supposedly it has been broken and fixed twice throughout the versions, and I want to determine exactly ...
0
votes
0answers
593 views

Start activity from Service - for sure (Android)

I'm trying simply to start an activity from a service for days. This can't be that difficult! All I want is this: 1) Start an Activity from a background service (scheduled by AlarmManager). Currently ...
0
votes
1answer
115 views

local notifications in screenlocks

I'm looking for a way to display a UIAlert on the Iphone screen each time the Iphone goes to screenlock mode. Is there a way to do that through local notifications without using timers ? Or any ...
0
votes
2answers
415 views

Android: Disabling or at least ignoring standby

I'm writing an app with alarm functionality, i.e. it will have to continue running while the device goes into standby. Apparently, this is not the case. How can I achieve that? It would be even ...
0
votes
2answers
506 views

SMS gateway how to program android app

I want to make a SMS gateway app, that polls my website and checks if there are messages to send in the queue, and if there is, the app will send it to the destination number. There should also be a ...
0
votes
1answer
124 views

How to query snmp trap through system floating IP?

I have written a snmp-agent, and it can run in system (rhel5). By querying oid from snmp client, it will get snmp trap. But my problem is: if there are two servers(one is stand-by system, one is ...
0
votes
1answer
243 views

Problem with SetSuspendState

I write a small application to enter the computer to Standby Mode: #include "stdafx.h" #include <windows.h> #include <PowrProf.h> int _tmain(int argc, _TCHAR* argv[]) { ...
0
votes
1answer
95 views

Oracle Data Guard - What are the changes to make on standby database which is a mirror copy of the primary database

After setting up primary database which is setup with Raid1. I break the mirror and physically transfer it to the standby database hardware and did a Raid1 sync. With that I have exact replicate of ...
0
votes
1answer
2k views

How do I set a custom Android standby screen?

For example, I want to write an activity that launches when you return from sleep (black screen). How can I set this activity to run instead of the default one? In other words, I want to make a custom ...
0
votes
4answers
369 views

Cause the iPhone to go into Standby

I am looking to make an app to replace the standby button. The problem, I've looked over the iPhone API very thoroughly and found how to disable standby but not how to cause the iPhone to go into ...
0
votes
4answers
586 views

Sleep Windows from Java

Is there command to use on windows from java to make the computer sleep?
0
votes
1answer
814 views

Adjust volume and prevent computer from standby in Java… (Mac and Windows XP, Vista)

I am writing a Java program that wants to do 3 things, and I don't know how to do them or if it's even possible with Java. 1 - I want to ensure that the computer whether running mac OS or windows ...
0
votes
1answer
295 views

Use of the standby attribute of the object element

I was just going over the OBJECT element in HTML (http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.3) . I've done a few flash projects and a few silverlight, and so would have seen the ...