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.
...
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...
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 ...
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 ...
Is there command to use on windows from java to make the computer sleep?
...
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...
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 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.
...
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.
...
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
...
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
...
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..
...
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...
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...
How can I tell Windows XP to switch to standby mode programmatically with C/C++ native code?
...
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...
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
...
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....