screen

For the same screen resolution and DPI settings, Can the pixels for a IDE control change between two OSes?

Assume a GUI application is opened on three machines running Windows XP, Windows Vista and Windows7. In all the three machines, the screen resolution and the DPI settings are set to be the same value. Will there be a difference in the way the application is displayed on the screen in terms of number of pixels used and their position on t...

Screen Recording Software to capture Software Defects

Hi, do you know a good screen recording software, to assist the quality management process? I think, that the following features will be important: easy to use. auto capturing the last 5 or 10 Minutes small video size low price :-) Thank you for your help ...

Android pages Activity or Layout?

My app Consists an intro page with "Start", "About", etc.. I managed to create a functional version of the app by having the "Start" button call a new layout in which a new onclick listener is defined. This doesn't seem clean to me that I@m defining a new onClick listener for each Layout I use and wonder how the correct way would be t...

Record frames from X11 into a file

I think there should be some sort of internal support on screen capture utilities with X11. So how can capture frames from X11 frame-buffer into a file eg. avi, jpeg etc.? Sultan ...

Full / maximised Screen Programs at start up for "vending machines / ticket machines"

Hi there. Just curious about the different ways vending machine companies / ticket companies get their application to run at startup full screen on a windows host machine. Now first thing I am thinking is obvioulsy a link to the app in startup with a switch for -fullscreen. There would be local / group policy as another option also...

How to get an event in a service when the screen is touched ?

I would like to implement a service in Android that basically should monitor the time elapsed since the user didn't touched the screen. For example the user opens Internet or Adobe Reader, starts reading and don't interact anymore withe the touchscreen. I want that my running service know the time since the user didn't touched the screen...

when i include files on php, it gives me blank screen?

im trying to include the header at the top of my pages it gives me a blank screen, when i remove it the php file runs and shows the content: <?php include("header.php"); ?> thanks :)) ...

Unresponsive resistive screen

Hello, I dont know if it is a good place to ask this but I am going to give it a shot. There is a resistive screen for the HTC Tattoo. The owner removed the sensor plastic off the screen and accidentally wiped a substance off the screen (the part with the sensor plastic off). Now when the plastic is put back on, the screen does not res...

What does LogMeIn use to capture the screen image so quickly...

I saw a lot of duplicate suggestions when I typed this in, but they didn't necessarily answer it fully... I mean, it can't be that complicated to do, but it seems that log me in does it pretty quickly and there's not a whole lot of lag. I mean its basically: Copy frame Process input/Compress/package frame for network Send frame recei...

How to put a screen behind the current one ?

I have a app that is started by a received intent (calendar alert). It may be started multiple times just one after a other (with a few sec between them). Now i want it to stack the screens from the top down.. So first start of my app gets the view... if it's fired again while first is still shown..but this one below so when user has ...

Starting screen from PHP to execute intensive Java application

Hello, I am wondering how to start a screen session from PHP, I have tried with shell_exec(), system() and passthru(), but no avail. I have gotten the screen session started for the execution time of the script, but after it has finished loading, it kills the screen session it just created. (By starting a screen session and executing '...

When I rotate the screen, my activity restart? how can I stop this??

I connect to i ip-cam with thread. When I rotate screen, activity restart and new thread restart?? I only want to set ImageView fullscreen when ı rotate... How can I stop activity-restart??? public class ViewCam extends Activity implements OnClickListener { private Bitmap bmp = null; private String bmpl = null; private ImageButton UpBu...

How to change screen resolution in WPF?

Hi, how I can change screen resolution programmatically? And how to get a list of available resolutions for display? I tried to make how described in this article: http://www.c-sharpcorner.com/UploadFile/Joshy_geo/changescreenresolution10102006112110AM/changescreenresolution.aspx But Screen and Resolution classes do not exist in System...

Make .NET snipping tool compatible with multiple monitors

An alternative snipping tool solution was provided in this posting: http://stackoverflow.com/questions/3123776/net-equivalent-of-snipping-tool Now it's necessary to make it work for selected screens (on multi-monitor systems). The code has been modified accordingly: Public Class SnippingTool Private Shared _Screen As Screen ...

Screen fails to lock

Hi fellow Android developers, I have a mind-boggling issue here and googling yield no result. Basically I have an app which needs to perform a screen lock function at some point (setting FLAG_FULLSCREEN and the relevant settings). This works on Motorola Droid but not Motorola Milestone XT720. On the Milestone, pressing the home button...

capture screen redraw event in android

Hi Is there any screen redraw event in android which gets fired when there is any change in phone screen. Actually this event gets fired in Symbian C++. When this event gets fired we can capture the screen shot. Is same functionality available in android too. Please Help Regards Gaurav Gupta ...

win32: detect if start menu is auto-hidden?

I want to position a window at the bottom of the screen. If the start menu is present, I want it to lie along the top of the start menu. If it is not (or it is auto-hidden), I still want it to be in the same position as it would be if the start menu was there, meaning there will be a gap of a few pixels. Currently I get the monitor work...

android screen resolutions and sizes

I am currently working on an android app that is causing me some trouble. My app is heavily dependent on images that are fitted correctly to the screen they are being displayed on. Unfortunately things like the FWVGA/WVGA resolution difference 854 vs 800 is causing me some real problems, and that's aside from the other sizes/densieites a...

PHP function to grab all links inside a <DIV> on remote site using scrape method

Anyone has a PHP function that can grab all links inside a specific DIV on a remote site? So usage might be: $links = grab_links($url,$divname); And return an array I can use. Grabbing links I can figure out but not sure how to make it only do it within a specific div. Thanks! Scott ...

Screen ON/OFF receivers on a service and battery life

Hi, I'm new to Android and Java programming so I would like to clear up couple of things. I've wrote a background service that every 10 seconds it verifies something and based on some conditions it executes something or not. This is implemented using a Timer. My understanding until now is that the timer in the service will run even when ...