standby

Use of the standby attribute of the object element

Hi, 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 element in passing. For some of the flash, I would have written some 'loading' logic to let the user know the actual flash body is loading. ...

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 original application still works after the iPod returns from standby. My application plays music (AudioUnit) and when the iPod enters standby the...

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 hibernate can be checked - http://pinvoke.net/default.aspx/powrprof/IsPwrHibernateAllowed.html Is there something similar for checking standby ...

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 xp/vista, doesn't go to sleep whilst running my app. 2 - I want my app to be able to turn the volume to full on all of the above OS's before ...

Sleep Windows from Java

Is there command to use on windows from java to make the computer sleep? ...

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 application that I'm working on. I'm looking for reasons like "Media center wanted to record a program," "user input woke the machine," "windows up...

WPF application crashes when going into standby

Hi all. 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 transparent. I am using .NET 3.5 with SP1. does anyone have an idea? edit 1: When the window is in visibility.Collapsed - the app doesn't cr...

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; But if the user uses the sleep button it messes up with my game state in my code. Any help would be appreciated, thanks in advanced. ...

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 standby. I'm sure there must be a way, after all the iPhone goes into standby after a time anyway. Thanks in advance for any help. ...

C# - How to Suspend to RAM and wakeup

Hi, 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 would be great to look at. Thanks ...

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 lock screen. Thanks ...

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 can trap to prevent the screensaver from coming on.. ...

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

Hi, 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 the primary database on the standby database. However, since the standby database's data is exactly the same as primary database, I ha...

Wifi just goes into IDLE

Hi, 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 into power save mode (anyways when the screen has gone black) the Wifi connection will simply be dropped, even though it is still being us...

Tell Windows XP to Standby programmatically

How can I tell Windows XP to switch to standby mode programmatically with C/C++ native code? ...

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[]) { SetSuspendState(FALSE, FALSE, FALSE); return 0; } I get this error: 1>Standby.obj : error LNK2001: unresolved external symbol _SetSuspendState@12 1>C:\Document...

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. pauseAll() - Pause all triggers - similar to calling pauseTriggerGroup(group) on every group, however, after using this ...

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 active system),If I query snmp trap by floating IP, I will get no snmp trap. That is, I have to query by the true(active) IP, not floating IP....