printscreen Questions
5
protected override void OnStart(string[] args)
{
base.OnStart(args);
CaptureScreen();
}
protected override void OnStop()
{
base.OnStop();
}
private void CaptureScreen()
{
Bitmap printscree...
Treillage asked 17/1, 2011 at 11:15
4
When capturing a window manually with the Print Screen+Alt key combo, I get the following:
but if I try to do it programmatically using Windows API, I get this:
Why the discrepancy? How do I ...
Clerihew asked 3/5, 2013 at 3:16
2
Solved
I'm using a thrid-party screen capturing application (Screenpresso). It's configured to start screen-capturing when I press PrtSc. And indeed it works except when Intellij has Windows focus. In fac...
Dyewood asked 28/4, 2020 at 13:30
25
Solved
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 (the popup menu...
Boatload asked 28/10, 2008 at 9:3
2
Solved
I am making a program that will click the printscreen key of the keyboard. The code I am using is the following:
INPUT myInput;
myInput.type = INPUT_KEYBOARD;
KEYBDINPUT keyboardInput;
keyboardI...
Sandal asked 27/7, 2014 at 20:23
8
Solved
How can I disable Print Screen functionality while my WPF application is running?
The use-case is that my client wants to avoid unnecessary replication of valuable patient-centric data from the ou...
Overburdensome asked 8/10, 2010 at 10:57
3
Solved
I'm trying to use print screen image area to get 2 monitors, but only works for one monitor. Can you advise me how to get figure 2 monitors?
Robot robot = new Robot();
Rectangle screenRect = n...
Strabismus asked 18/8, 2013 at 16:46
1
Solved
Is there any way to block PrintScreen key using C++ code in linux? I am writing a C++ program which do not want user get screen shoot. I tried g_signal_connect to block PrintScreen key but it seems...
Plusch asked 24/10, 2013 at 22:2
2
Solved
How can I print screen minimized windows? I believe it's possible, since Windows task-bar can create a preview of a window even if it is minimized.
Domingadomingo asked 4/10, 2009 at 22:7
2
Solved
How can I print a certain block/part of a web page?
Print option to look like Print Screen functionality.
Underlay asked 9/2, 2010 at 7:42
3
Solved
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
Rhombencephalon asked 7/5, 2009 at 20:28
1
© 2022 - 2024 — McMap. All rights reserved.