<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Screen Print Capture in C# using SendInput()</title>
	<atom:link href="http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/</link>
	<description>It&#039;s all about delivering</description>
	<lastBuildDate>Wed, 08 Feb 2012 16:42:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Vimal</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-1272</link>
		<dc:creator>Vimal</dc:creator>
		<pubDate>Tue, 21 Jun 2011 04:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-1272</guid>
		<description>Hi,

Whenever i open my window, I want to copy the highlighted text on the any active application and paste it on the text box in my window.  
How to do this using SendInput in C#?
Please help</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Whenever i open my window, I want to copy the highlighted text on the any active application and paste it on the text box in my window.<br />
How to do this using SendInput in C#?<br />
Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-876</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 12 Nov 2009 13:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-876</guid>
		<description>Hi there,

just stumbled on this post of yours, needed the keyCode for PrintScreen, so thanks for that :)

Also, as per request, I&#039;m commenting because the sources look awful :D

Cheers</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>just stumbled on this post of yours, needed the keyCode for PrintScreen, so thanks for that :)</p>
<p>Also, as per request, I&#8217;m commenting because the sources look awful :D</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-635</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 12 May 2009 11:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-635</guid>
		<description>I know this is 4 years later but just wanted to say thanks.  I used this to check and set NumLock status.  For C#.NET, this was a clearer and easier to implement solution than some of the others out there.</description>
		<content:encoded><![CDATA[<p>I know this is 4 years later but just wanted to say thanks.  I used this to check and set NumLock status.  For C#.NET, this was a clearer and easier to implement solution than some of the others out there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-636</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 15 Nov 2008 08:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-636</guid>
		<description>what is exactly your application doing?&lt;br /&gt;can you please put here a running project?</description>
		<content:encoded><![CDATA[<p>what is exactly your application doing?<br />can you please put here a running project?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Osborne</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-637</link>
		<dc:creator>Steve Osborne</dc:creator>
		<pubDate>Wed, 24 Sep 2008 10:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-637</guid>
		<description>Thank you so much Cory. All I had to do to have a very powerful helper class to handle all sorts of key combinations that would also include characters was to add to NativeWIN32.cs the following function&lt;br /&gt;&lt;br /&gt;        [DllImport(&quot;user32.dll&quot;)]&lt;br /&gt;        public static extern short VkKeyScan(char ch);</description>
		<content:encoded><![CDATA[<p>Thank you so much Cory. All I had to do to have a very powerful helper class to handle all sorts of key combinations that would also include characters was to add to NativeWIN32.cs the following function</p>
<p>        [DllImport("user32.dll")]<br />        public static extern short VkKeyScan(char ch);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-638</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 10 Aug 2007 14:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-638</guid>
		<description>I had the problem with Marshal too.  I believe it&#039;s part of System.Runtime.InteropServices.  At least in my Visual C#.  If do the following it compiles fine:&lt;br /&gt;&lt;br /&gt;using System.Runtime.InteropServices;</description>
		<content:encoded><![CDATA[<p>I had the problem with Marshal too.  I believe it&#8217;s part of System.Runtime.InteropServices.  At least in my Visual C#.  If do the following it compiles fine:</p>
<p>using System.Runtime.InteropServices;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ran 'chaosblade' Sagy</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-639</link>
		<dc:creator>Ran 'chaosblade' Sagy</dc:creator>
		<pubDate>Thu, 31 May 2007 16:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-639</guid>
		<description>Nice code. Tried using it to simulate pasting, But couldn&#039;t get it to work reliably in Vista. Any idea?</description>
		<content:encoded><![CDATA[<p>Nice code. Tried using it to simulate pasting, But couldn&#8217;t get it to work reliably in Vista. Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michal Fojtik</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-640</link>
		<dc:creator>Michal Fojtik</dc:creator>
		<pubDate>Sat, 24 Feb 2007 16:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-640</guid>
		<description>just wanted to say thanks for this old but great piece of code :)</description>
		<content:encoded><![CDATA[<p>just wanted to say thanks for this old but great piece of code :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-641</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 16 Oct 2006 11:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-641</guid>
		<description>This is genius. Thank you very much :)&lt;br /&gt; - Abbie</description>
		<content:encoded><![CDATA[<p>This is genius. Thank you very much :)<br /> &#8211; Abbie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.coryfoy.com/2005/04/screen-print-capture-in-c-using-sendinput/comment-page-1/#comment-642</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 07 Sep 2006 23:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cornetdesign.com/?p=396#comment-642</guid>
		<description>THANKYOU So much!!! Cheers!&lt;br /&gt;-Edmond</description>
		<content:encoded><![CDATA[<p>THANKYOU So much!!! Cheers!<br />-Edmond</p>
]]></content:encoded>
	</item>
</channel>
</rss>

