A little code snippet that is doing a Screen Capture, saving it to a Jpeg file, and launch the default program associated to jpg to view it. Size s = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Size; string filename = Path.GetTempFileName() + ".jpg"; using (Bitmap bitmap = new Bitmap(s...