printscreen

Capture Window (Alt-Print Screen) of Context Menu

As everyone knows, sometimes developers have to document stuff. Or capture some stuff for filing bug reports. My question is in MS Windows. I'm trying to capture the context menu (right-click on an item) of several areas of an application. Pressing Alt to start the alt-printscreen process closes the context menu. (Only pressing Print...

How can I prevent users from taking screenshots of my application window?

What are some methods to prevent screenshots from being taken, if any? I've considered setting the "Print Screen" button as a hotkey, which makes the window fuzzy. However, there would be the problem of other 3rd party screenshot tools. How can I prevent their use? Why would I want such a thing? The idea is to create a chat client wh...

API call to render the output of an App (win) to a image

Hello guys, I need a to build a application (.NET) that given the pid of another app continually makes printscreens of that app to make a video... I'm using the API call: new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb); the problem I've is speed.... Any ideas ? ...

How do I programatically take a screenshot of an application in Linux?

Hi, How do I programatically take a screenshot of an application in Linux? I'm using c++. Any idea? For windows there are a lot of resources but I can't find anything for linux Any help? Thanks ...

client system clipboard print screen image save in server system

It is possible the client system clipboard print screen image save in server system using C#. net web application ...

How can i take snapshot of command prompt window in full screen mode.

Hi all, I need to take snapshot if command prompt window running in full screen mode. I had tried it using PrintScreen,Ctrl+PrintScreen, Ctrl+Alt+PrintScreen button(s) but nothing seems to work Also are there any reasons that the print screen button does not work in full screen commandprompt mode? After all, it does for all windows u...

Screen Capture Feature Overrides

what i want to do is write an application in C# like "fraps" and other scren capture apps that when you press the "Print Screen" it saves the current screen as an image. What i thought of is that "i could create a background worker thread that checks the clipboard after x seconds and if there is an image, that is now in clipboard beca...

Discovered: Run A Video In An Image

okay i have found the way to run a video in a image.... the procedure as given below 1 - Run a video in Windows Media Player 2 - While the video running, Press Print Screen 3 - Paste it in MS Paint 4 - Save the image in JPEG or BMP format 5 - Run any video in Windows Media Player again 6 - Now open that image, in Windows Page\Fax V...

My.Computer.Keyboard.SendKeys(Keys.PrintScreen, True)

I am attempting to send the PrintScreen key, obviously, which ought to work no matter the window it is focused on. How can I make this trigger the printscreen action like it normally would? This is in VB.net. Thanks for the help! I have googled this, and couldn't find any results that worked. EDIT: Somehow, this worked, once. But now i...

Capturing Alt+PrintScreen hot key and clipboard contents

I setup catching hotkey on alt+printscreen. It catches perfectly but there is nothing in the buffer - no image. How can I get the image from Clipboard.GetImage() after catching hotkey? Here is the the code. using System; using System.Runtime.InteropServices; using System.Collections.Generic; using System.ComponentModel; using System.Da...

Is it possible to print screen minimized windows?

Is it possible to print screen minimized windows? I think it IS, because Windows's taskbar preview does do it. Thanks (please correct my english errors) ...

How can I print a certain block/part of a web page?

How can I print a certain block/part of a web page? Print option to look like Print Screen functionality. ...

How to take "print screen" from your FLEX application and save it to hard drive?

So I have such code for my application <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"> <fx:Script> <![CDATA[ protect...

Can the "screenshot" functionality be removed from an iPhone app?

I'm creating an iPhone app for a client who's not comfortable with allowing users the ability to take a screenshot of the app content. Is there an API to block this while the app is running? ...

Is it possible to "trick" PrintScreen, swap out the contents of my form with something else before capture?

I have a bit of a challenge. In an earlier version of our product, we had an error message window (last resort, unhandled exception) that showed the exception message, type, stack trace + various bits and pieces of information. This window was printscreen-friendly, in that if the user simply did a printscreen-capture, and emailed us th...

Can Adobe AIR Desktop application take full screen snapshots (aka Print Screen button)

I would like to know if its possible to get full screen snapshots from an air application. What i am interested in, is functionality similar to PrintScreen button in windows, which takes snapshots of all screens, including third party application windows, not just window in which air app is running. If its not specific to air, and flash/...

How do I go about saving a portion of the graphical context without disturbing the user?

Hello experts! My situation is like this, I want to programmatically take a print screen of the current view visible to the user and save this to the photo album. The problem is that I don't want all of the views in the hierarchy to be visible. My plan was to: Make a copy of the view hierarchy. Hide the subviews which were not inte...