Questions tagged [printscreen]

118 questions
0
votes
0 answers

block all the printScreen key events

My client insists that as long as his java app is running, the PrintScreen functionality has to be disabled, note that the app has to be cross-platform, the approaches I have tried for blocking PrintScreen were detecting the key events from the…
SDIDSA
  • 894
  • 10
  • 19
0
votes
1 answer

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 person is seeing at the moment. The thing is that…
Norman
  • 79
  • 1
  • 1
  • 7
0
votes
1 answer

how to disable printscreen key on windows using python

Is there any way to disable the print screen key when running a python application? Maybe editing the windows registry is the way? Thanks!
0
votes
1 answer

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 frame has caption dependent on script evaluation…
0
votes
1 answer

How to programmatically take a screenshot in Android without root or adb?

as title says, im trying to figure out how to programmatically take a screenshot in android without root or adb, what about executing script or simulating android keyevents? im trying to find solution but no success.
QuestionMark
  • 35
  • 1
  • 3
0
votes
0 answers

How to take Screenshot (Print Screen) from an embedded word document (quietly) in Excel document using VBA?

I need take quietly Print Screen from an embedded Word document that is in my Excel doc and showing this image in a Splash Screen User form. How can I do that? This because performing a read only Print Preview to user, before printing results that…
mgae2m
  • 1,134
  • 1
  • 14
  • 41
0
votes
0 answers

Catch print screen key code

How I can catch the "print screen" key code? (volume up + volume down, volume down + app_switch, ...) so I can hide view, which is triggered by the volume down button? I'm trying KEYCODE_SYSQR, but it will not capture the printscreen…
user4256388
0
votes
1 answer

C#: restricting Print Screen of my Application

I am making a Test Engine so i want to restrict PrintScreen of my application
Javed Akram
  • 15,024
  • 26
  • 81
  • 118
0
votes
1 answer

window.clipboardData.setData('text','') is not working in chrome

i want to prevent print screen in my website. i used but its not working in chrome and mozillafirefox $(document).keyup(function(e){ if(!e) e = window.event; var keyCode = e.which || e.keyCode; if (keyCode == 44) { …
0
votes
1 answer

Transparency issue: Some softwares can't see properly my WPF "printscreen" in .jpg

I would like some help with my images. I just want to save my screen and gladly I could. But some softwares can't properly see them. For example: If I put my image (.jpg) in facebook, or open it with Paint, it will be like this: but if I open the…
Andre Aquiles
  • 394
  • 1
  • 17
0
votes
0 answers

Print screen area for Dance School ID's?

sorry for my bad english. I am new here and to C# also. I need help with screen capturing a area of the Form that contains image in PictureBox and text in TextBox. Everything is fine except that the saved image of screenshot does not contain the…
0
votes
1 answer

How to check whether data gets inserted into ClipBoard is from PrintScreen?

I have written C++ dll. In this DLL I'm hooking two WIN API, GetClipboardData & SetClipboardData. So I want to check whether the data which is going to be inserted into clipboard in SetClipboardData is from PrintScreen ? In SetClipboardData WIN…
Ajit Medhekar
  • 1,018
  • 1
  • 10
  • 39
0
votes
1 answer

How can I take a print screen using Qt / C++ with various monitors?

I'm new to Qt Creator, but I'm trying to create and application than takes a Screen Shot every minute, I found a code in Qt Creator to do this but it only works with one monitor, if I have two or more it only takes a screen shot of one the monitors.…
SujaM
  • 409
  • 6
  • 16
0
votes
1 answer

PrintScreen image capturing

I need to write a program that I will create a runnable jar and distribute. The functions should be like below: when double click the jar, it will open a window. it will ask the path where to save the image files. it will then ask whether to add any…
0
votes
3 answers

JavaScript, Print Screen and copy and paste

I got some code from the internet, below, and used it in a mock exam application I am doing. This is suppose to prevent people from Printing Screen, copying or cutting from the exam page. The code works perfectly well in Internet Explorer but does…
Bainn
  • 37
  • 12