cancel
Showing results for 
Search instead for 
Did you mean: 

How to take screenshot for parallel execution

KarthikD
Level 2
Hi There,   I have to take screenshot of each processes during parallel execution so please let me know whether we have option in Blueprism 6.0.  If so, how to do it? Thanks for your help. Regards, D Karthik
2 REPLIES 2

KarthikD
Level 2
Can anyone please help me to know? Thanks, D Karthik

AndreyKudinov
Level 10
Just do something like this: Bitmap memoryImage = new Bitmap(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height); Size s = new Size(memoryImage.Width, memoryImage.Height); Graphics memoryGraphics = Graphics.FromImage(memoryImage); memoryGraphics.CopyFromScreen(0,0,0,0,s); memoryImage.Save(png_path); p.s. png_path is file to save