Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
32answers
7k views

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

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 ...
6
votes
10answers
6k views

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 ...
4
votes
5answers
81 views

Is it possible to program an application that won't show up on a print screen?

If the Print Scrn button is pushed and then you open paint and Ctrl V your image in there is there a way to make it so your program isn't there or maybe is substituted with a black box or something. ...
4
votes
4answers
293 views

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 ...
3
votes
7answers
917 views

how to disable “PRINT SCREEN” button while running my Application in WPF?

How can I disable Print Screen functionality while my WPF application is running...?
2
votes
3answers
433 views

How to export Image of my form c#

I need a solution how could i make a Print Screen of my WinForm on C# and export it as PNG. Bests
2
votes
1answer
504 views

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 ...
2
votes
2answers
777 views

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)
2
votes
3answers
2k views

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

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
1
vote
1answer
30 views

Is possible PrintScreen or save in an image some part of the screen?

Is it possible? I need save the sreen and send from iPad to a WebService... Concretly the problem is that i want simulate a sign in the screen and later save this sign in a NSData and send by email. ...
1
vote
1answer
136 views

C# MVC Send an email attachment of a print screen image

This is for printing screen, using System.Drawing; using System.Drawing.Imaging; Bitmap printscreen = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height); ...
1
vote
4answers
1k views

Why does print screen in a Windows Service return a black image?

protected override void OnStart(string[] args) { base.OnStart(args); CaptureScreen(); } protected override void OnStop() { base.OnStop(); } private void CaptureScreen() { Bitmap ...
1
vote
1answer
70 views

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

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 ...
1
vote
2answers
1k views

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 ...
0
votes
1answer
99 views

Disable iPad “Screen Capture” function

I'm building a program to handle sensitive data. I want to disable the "Screen Capture" function of iPad (press Home & On/Off buttons simultaneously). Is there any method to do so?
0
votes
1answer
71 views

How to print screen Visual Studio IDE including tooltip/intellisense?

Here is a printscreen of a tooltip/intellisense that is there before and after I hit the printscreen key. Here is a an image from my camera. Have also tried delayed printscreen with count down ...
0
votes
2answers
141 views

How to capture the screen using JavaScript?

I want to make an extension which can automatically capture a specified area of a webpage. I want to capture the real picture which the user is right now watching just like what the PrintScreen key ...
0
votes
0answers
27 views

why does text on a screenshot seem to be less pretty/sharp/highres than in the original window? or is it illusion?

when I take screenshots of a Flash app it seems that the text in the original looks a lot sharper and prettier than in screenshot. Screenshot looks sorta fuzzy. Is that a visual illusion on my part ...
0
votes
1answer
139 views

PrintScreen Source Code/Simulation

I would like to take a picture of a fullscreen direct3D game. I know I need to create an "overlay" which is harder in c# and I found out that using printscreen (and than pasting it in mspaint) does ...
0
votes
3answers
354 views

jQuery onClick PrintScreen & Send Image E-Mail

I have got an iFrame on my site. On the site in it, it uses Flash to "build their own cooking range". Once built it spits out a model number of the cooking range they are looking for. I want to ...
0
votes
0answers
257 views

How can i take screenshot using a vbs(vb script file) file? [closed]

Possible Duplicate: taking screenshots of an application using WSH Script I need to take a screenshot of my screen and it should save into my local disk. Can I take screenshot by using ...
0
votes
1answer
619 views

How to autosave (without dialog box) an image using as3 (Flash CS5)

It looks like an easy question but I can't find the answer. I have this code: import com.adobe.images.PNGEncoder; var fr:FileReference = new FileReference(); var pngSource:BitmapData = new ...
0
votes
0answers
120 views

Partial screen capture via script

There are many screen capture sharewares out on the net I am fully aware, I am looking for a way to capture a partial desktop via a script(no human interaction needed). the functionality would just ...
0
votes
1answer
288 views

Help - Flash CS5 - Print ( a print screen of the program)

I would like the clients to print what they are seeing at the moment with the flash program. How is this possible? That is why I said (print screen of program) because its actually printing what the ...
0
votes
1answer
174 views

How to capture html frame as an image

I need to open a webpage from Python and capture what I see in browser as an image(or rather what should be seen, because I want to execute it in background). The webpage contains JavaScript - one ...
0
votes
0answers
136 views

can flash run a code to capture the page screen that it's embedded into?

I'd like to know if it is possible to embed a flash piece of code in my web page, so that it captures the html page it is in as an image (similar to the print screen functionality)? If so, how? ...
0
votes
2answers
740 views

Java print screen program

I am trying to use Robot in Java to make an image file of a print screen. So far I have: Robot robot = new Robot(); Rectangle screenRect = new ...
0
votes
3answers
242 views

C#: restricting Print Screen of my Application

I am making a Test Engine so i want to restrict PrintScreen of my application
0
votes
1answer
186 views

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?
0
votes
1answer
1k views

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" ...
0
votes
2answers
949 views

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.
0
votes
1answer
1k views

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 ...
0
votes
1answer
115 views

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 ...
0
votes
1answer
153 views

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 ...
0
votes
1answer
849 views

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
0
votes
1answer
133 views

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

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 ...
-2
votes
6answers
3k views

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

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 ...