<?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 Hi Jonas,… in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80196#M31957</link>
    <description>Hi Jonas,
How will take printscreen without Sendkeys. is there any way to do that, if yes please share the details. because we want takescreen shot also.</description>
    <pubDate>Wed, 28 Mar 2018 17:07:00 GMT</pubDate>
    <dc:creator>MadhuBalineni</dc:creator>
    <dc:date>2018-03-28T17:07:00Z</dc:date>
    <item>
      <title>From Printscreen to PDF using PDF creator</title>
      <link>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80193#M31954</link>
      <description>Hi all,

I am stuck at the moment with the following situation:

1. I need to take several printscreens from a certain application and save those in .PDF format

2. All these Different PDF's need to be merged together into one PDF using PDF creator

&amp;nbsp;

&amp;nbsp;

Right now I am looking at the "Take Printscreen Page in "Utility-Environment". It allows me to save a printscreen as an image, yet I do not know how to get from an image data item to a PDF file succesfully.

&amp;nbsp;

Kind regards,

Jonas</description>
      <pubDate>Tue, 27 Mar 2018 20:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80193#M31954</guid>
      <dc:creator>JonasBertels</dc:creator>
      <dc:date>2018-03-27T20:05:00Z</dc:date>
    </item>
    <item>
      <title>Why not take printscreens,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80194#M31955</link>
      <description>Why not take printscreens, paste them one by one in a word document and save the document as PDF?</description>
      <pubDate>Tue, 27 Mar 2018 20:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80194#M31955</guid>
      <dc:creator>BastiaanBezemer</dc:creator>
      <dc:date>2018-03-27T20:34:00Z</dc:date>
    </item>
    <item>
      <title>That will indeed work for…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80195#M31956</link>
      <description>That will indeed work for most documents, but there are a few documents that aren't printscreens, yet need to be added in the merged PDF.
But I'll take a close look into this and communicate with the SPOC of the Business unit about the possibilities I see around this part.
Thanks a lot for your input Bastiaan!</description>
      <pubDate>Wed, 28 Mar 2018 00:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80195#M31956</guid>
      <dc:creator>JonasBertels</dc:creator>
      <dc:date>2018-03-28T00:54:00Z</dc:date>
    </item>
    <item>
      <title>Hi Jonas,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80196#M31957</link>
      <description>Hi Jonas,
How will take printscreen without Sendkeys. is there any way to do that, if yes please share the details. because we want takescreen shot also.</description>
      <pubDate>Wed, 28 Mar 2018 17:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80196#M31957</guid>
      <dc:creator>MadhuBalineni</dc:creator>
      <dc:date>2018-03-28T17:07:00Z</dc:date>
    </item>
    <item>
      <title>Hi Jonas,…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80197#M31958</link>
      <description>Hi Jonas,
How will take printscreen without Sendkeys. is there any way to do that, if yes please share the details. because we want takescreen shot also.</description>
      <pubDate>Wed, 28 Mar 2018 17:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80197#M31958</guid>
      <dc:creator>MadhuBalineni</dc:creator>
      <dc:date>2018-03-28T17:07:00Z</dc:date>
    </item>
    <item>
      <title>How will take printscreen…</title>
      <link>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80198#M31959</link>
      <description>How will take printscreen without Sendkeys. is there any way to do that

Yes; See code:

' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
'In the initialize page.
'On the code options
'Add as external reference:
'System.Windows.Forms.dll
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
' OUT: PrintScreen (as Image)
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' dim bitmap as new System.Drawing.Bitmap(System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height)
dim graphics as System.Drawing.Graphics = System.Drawing.Graphics.FromImage(bitmap)
graphics.CopyFromScreen(0, 0, 0, 0, bitmap.Size)
PrintScreen = bitmap

(add this code in a code stage on an object)
&amp;nbsp;</description>
      <pubDate>Thu, 29 Mar 2018 00:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/From-Printscreen-to-PDF-using-PDF-creator/m-p/80198#M31959</guid>
      <dc:creator>BastiaanBezemer</dc:creator>
      <dc:date>2018-03-29T00:14:00Z</dc:date>
    </item>
  </channel>
</rss>

