<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic The screenshot feature… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61882#M15077</link>
    <description>The screenshot feature stores an image of the last exception to occur on a resource - I presume it is not saving a screenshot of every exception that occurs within a session as that would generate far too much log data.&amp;nbsp;&amp;nbsp;</description>
    <pubDate>Mon, 08 Jan 2018 18:44:00 GMT</pubDate>
    <dc:creator>Denis__Dennehy</dc:creator>
    <dc:date>2018-01-08T18:44:00Z</dc:date>
    <item>
      <title>Capture Screenshot in Exception Stage</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61879#M15074</link>
      <description>In Blue Prism version 6, a feature was added to take error screenshot in exception stage. 
I tried using that. But I am not sure where the screenshot is getting saved and how to access it.
If Someone has any idea on this, please help me out.!!! 
Thanks in advance</description>
      <pubDate>Wed, 22 Nov 2017 12:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61879#M15074</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-22T12:14:00Z</dc:date>
    </item>
    <item>
      <title>Hi, I haven't looked at V6</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61880#M15075</link>
      <description>Hi, I haven't looked at V6 for this feature but we created a code stage (C#) that programatically takes a screen print and saves it to a specific location.  This is very handy for support (who obviously do not have access to prod machines) as we incorporate the action into the exception handling (usually abort) so we can see what's gone wrong.  I can dig the code out if you like but you will probably find it on stack exchange easily enough.
Mike</description>
      <pubDate>Fri, 24 Nov 2017 02:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61880#M15075</guid>
      <dc:creator>MikeHiggs</dc:creator>
      <dc:date>2017-11-24T02:10:00Z</dc:date>
    </item>
    <item>
      <title>Srinath,</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61881#M15076</link>
      <description>Srinath,
The image is being stored in the database as an encoded value. You can only view the exception image by right clicking on a robot from the available resources section of session management and clicking view last screenshot.
I'm not sure why Blue Prism aligned a screenshot to a resource, rather than aligning them to a work queue item.
Tom.</description>
      <pubDate>Mon, 27 Nov 2017 20:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61881#M15076</guid>
      <dc:creator>TomBlackburn1</dc:creator>
      <dc:date>2017-11-27T20:52:00Z</dc:date>
    </item>
    <item>
      <title>The screenshot feature…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61882#M15077</link>
      <description>The screenshot feature stores an image of the last exception to occur on a resource - I presume it is not saving a screenshot of every exception that occurs within a session as that would generate far too much log data.&amp;nbsp;&amp;nbsp;</description>
      <pubDate>Mon, 08 Jan 2018 18:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61882#M15077</guid>
      <dc:creator>Denis__Dennehy</dc:creator>
      <dc:date>2018-01-08T18:44:00Z</dc:date>
    </item>
    <item>
      <title>Hi @Michael.Higgs…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61883#M15078</link>
      <description>Hi @Michael.Higgs
Could you please share your C# Code to take a print screen action?
Where do you set it up?
Thanks,
Ben</description>
      <pubDate>Sat, 24 Feb 2018 22:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61883#M15078</guid>
      <dc:creator>BenRPA</dc:creator>
      <dc:date>2018-02-24T22:31:00Z</dc:date>
    </item>
    <item>
      <title>There is a VBO provided by…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61884#M15079</link>
      <description>There is a VBO provided by BluePrism to take screenshot and save the screenshot with a Filepath\FileName.extension</description>
      <pubDate>Tue, 23 Oct 2018 23:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61884#M15079</guid>
      <dc:creator>AnitejaKota</dc:creator>
      <dc:date>2018-10-23T23:29:00Z</dc:date>
    </item>
    <item>
      <title>My C# code stage (png_path…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61885#M15080</link>
      <description>My C# code stage (png_path is input string):

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);</description>
      <pubDate>Wed, 24 Oct 2018 18:41:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Capture-Screenshot-in-Exception-Stage/m-p/61885#M15080</guid>
      <dc:creator>AndreyKudinov</dc:creator>
      <dc:date>2018-10-24T18:41:00Z</dc:date>
    </item>
  </channel>
</rss>

