Hi! I want to print the screen (not with the printer) I want to print it like the 'print button' on the keyboard and get an image. Any idea? I did have no starting point :(
|
3
|
|
|
|
|
|
If using the .NET 2.0 (or later) framework you can use the CopyFromScreen() method detailed here: http://www.geekpedia.com/tutorial181_Capturing-screenshots-using-Csharp.html
|
||
|
|
|
Hi, There are several articles I've found may help you. Please check them. |
|||
|
|
Here is a similar post: how-can-i-save-screenshot-directly-to-a-file-in-windows. The code is with win32 calls. Gary code is good too. Simply two different way to do it :) |
||
|
|
|
|
You can play around with SendKeys and get the behavior you want as well. SendKeys PrtScrn for the full screen. SendKeys Alt+PrntScrn for the current window only. Access the Clipboard for the image. (You may want to save anything already on the clipboard prior to using SendKeys and put whatever was on there back when you're done.) |
||
|
