<?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 for GSaraiva&#039;s Projects</title>
	<atom:link href="http://projects.pro.br/gsaraiva/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://projects.pro.br/gsaraiva</link>
	<description>Step by step</description>
	<lastBuildDate>Sun, 30 Aug 2009 01:10:08 -0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Developer Formatter by ViruSoul</title>
		<link>http://projects.pro.br/gsaraiva/developer-formatter/comment-page-1/#comment-3695</link>
		<dc:creator>ViruSoul</dc:creator>
		<pubDate>Sun, 30 Aug 2009 01:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=228#comment-3695</guid>
		<description>Thanks for a wonderful Plug-in (-:
but in FAQ you must add about changing permissions for geshi folder (-:

-ViruSoul</description>
		<content:encoded><![CDATA[<p>Thanks for a wonderful Plug-in (-:<br />
but in FAQ you must add about changing permissions for geshi folder (-:</p>
<p>-ViruSoul</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: jQuery.Animator by Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/2008/05/jquery-jqueryanimator/comment-page-1/#comment-3592</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Fri, 14 Aug 2009 19:17:56 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=43#comment-3592</guid>
		<description>Sorry, the link for animator was broken.</description>
		<content:encoded><![CDATA[<p>Sorry, the link for animator was broken.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: jQuery.Animator by Callan</title>
		<link>http://projects.pro.br/gsaraiva/2008/05/jquery-jqueryanimator/comment-page-1/#comment-3590</link>
		<dc:creator>Callan</dc:creator>
		<pubDate>Fri, 14 Aug 2009 12:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=43#comment-3590</guid>
		<description>Cool, even the demo doesn&#039;t work!</description>
		<content:encoded><![CDATA[<p>Cool, even the demo doesn&#8217;t work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.NameSpace by Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3473</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Mon, 20 Jul 2009 22:35:04 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3473</guid>
		<description>inherited property enables the correctly call for the function.
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;inherited<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>color<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> color<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE-->

Without inherited param, you have to manipulate params as a array, like the example below:
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>elem<span style="color: #339933;">,</span> params<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> elem.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> params<span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE-->

The use for both:
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#CustomDiv'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">customCss</span>.<span style="color: #660066;">SetColor</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;green&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li><span style="color: #009900;">&#125;</span></li></ol></div></pre><!--END_DEVFMTCODE--></description>
		<content:encoded><![CDATA[<p>inherited property enables the correctly call for the function.<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;inherited<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>color<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> color<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Without inherited param, you have to manipulate params as a array, like the example below:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;$.<span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;customCss&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;SetColor<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>elem<span style="color: #339933;">,</span> params<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000066; font-weight: bold;">return</span> elem.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;backgroundColor&quot;</span><span style="color: #339933;">,</span> params<span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #009900;">&#125;</span></li><li>&nbsp;&nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>The use for both:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>$<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></li><li>&nbsp;&nbsp;$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#CustomDiv'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">customCss</span>.<span style="color: #660066;">SetColor</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;green&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li><span style="color: #009900;">&#125;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.NameSpace by João Marcus Christ</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3469</link>
		<dc:creator>João Marcus Christ</dc:creator>
		<pubDate>Mon, 20 Jul 2009 18:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3469</guid>
		<description>How can I let the namespaced methods accept parameters?</description>
		<content:encoded><![CDATA[<p>How can I let the namespaced methods accept parameters?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.NameSpace by Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3460</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Sun, 19 Jul 2009 15:41:39 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3460</guid>
		<description>Oh my! really sorry, I&#039;ve fixed it now.</description>
		<content:encoded><![CDATA[<p>Oh my! really sorry, I&#8217;ve fixed it now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.NameSpace by Jeff</title>
		<link>http://projects.pro.br/gsaraiva/jquerynamespace/comment-page-1/#comment-3455</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sun, 19 Jul 2009 00:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?page_id=52#comment-3455</guid>
		<description>The download does not appear to be working.</description>
		<content:encoded><![CDATA[<p>The download does not appear to be working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delphi: SendMessage by Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/2008/05/delphi-sendmessage/comment-page-1/#comment-3268</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Wed, 01 Jul 2009 13:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=28#comment-3268</guid>
		<description>Moacir, não é muito difícil, mas está tarefa não envolve envio de mensagens, pois não é a maneira mais correta. O correto seria você simular um precionamento de tecla na janela apos colocar o foco nela.

Um código resumido seria assim:
<!--DEVFMTCODE--><pre class="devcodeblock" title="Delphi"><div class="devcodeoverflow"><ol><li><span style="color: #000000; font-weight: bold;">procedure</span> SimulateF1<span style="color: #000066;">&#40;</span>AHandle<span style="color: #000066;">:</span> <span style="color: #000066; font-weight: bold;">THandle</span><span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">var</span></li><li>&nbsp;&nbsp;hLastAct<span style="color: #000066;">:</span> <span style="color: #000066; font-weight: bold;">THandle</span><span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">begin</span></li><li>&nbsp;&nbsp;hLastAct <span style="color: #000066;">:</span><span style="color: #000066;">=</span> GetActiveWindow<span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;SetFocus<span style="color: #000066;">&#40;</span>AHandle<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;keybd_event<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> MapVirtualKey<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">,</span> 0<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;keybd_event<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> MapVirtualKey<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">,</span> KEYEVENTF_KEYUP<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;SetFocus<span style="color: #000066;">&#40;</span>hLastAct<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">end</span><span style="color: #000066;">;</span></li></ol></div></pre><!--END_DEVFMTCODE-->

Uso:
<!--DEVFMTCODE--><pre class="devcodeblock" title="Delphi"><div class="devcodeoverflow"><ol><li>SimulateF1<span style="color: #000066;">&#40;</span>myHandle<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></description>
		<content:encoded><![CDATA[<p>Moacir, não é muito difícil, mas está tarefa não envolve envio de mensagens, pois não é a maneira mais correta. O correto seria você simular um precionamento de tecla na janela apos colocar o foco nela.</p>
<p>Um código resumido seria assim:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Delphi"><div class="devcodeoverflow"><ol><li><span style="color: #000000; font-weight: bold;">procedure</span> SimulateF1<span style="color: #000066;">&#40;</span>AHandle<span style="color: #000066;">:</span> <span style="color: #000066; font-weight: bold;">THandle</span><span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">var</span></li><li>&nbsp;&nbsp;hLastAct<span style="color: #000066;">:</span> <span style="color: #000066; font-weight: bold;">THandle</span><span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">begin</span></li><li>&nbsp;&nbsp;hLastAct <span style="color: #000066;">:</span><span style="color: #000066;">=</span> GetActiveWindow<span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;SetFocus<span style="color: #000066;">&#40;</span>AHandle<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;keybd_event<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> MapVirtualKey<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">,</span> 0<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;keybd_event<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> MapVirtualKey<span style="color: #000066;">&#40;</span>VK_F1<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">,</span> KEYEVENTF_KEYUP<span style="color: #000066;">,</span> 0<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;SetFocus<span style="color: #000066;">&#40;</span>hLastAct<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">end</span><span style="color: #000066;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Uso:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Delphi"><div class="devcodeoverflow"><ol><li>SimulateF1<span style="color: #000066;">&#40;</span>myHandle<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delphi: SendMessage by Moacir</title>
		<link>http://projects.pro.br/gsaraiva/2008/05/delphi-sendmessage/comment-page-1/#comment-45</link>
		<dc:creator>Moacir</dc:creator>
		<pubDate>Tue, 30 Jun 2009 22:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=28#comment-45</guid>
		<description>Ótimo artigo, vem de encontro das minhas necessidades.

Poderias me ajudar com uma questão ?

Preciso enviar uma combinação de teclas, simulando o pressionamento de uma tecla (no caso a letra &#039;1&#039; ou a tecla F1)  para OUTRA aplicação.

Já consigo identificar a aplicação desejada, mas infelizmente não consigo enviar a mensagem. 

Tenho tentado assim, sem sucesso:

      SendMessage(myHandle, WM_SETTEXT, 0, VK_F1);

Tens alguma dica para mim ??

Grato !!</description>
		<content:encoded><![CDATA[<p>Ótimo artigo, vem de encontro das minhas necessidades.</p>
<p>Poderias me ajudar com uma questão ?</p>
<p>Preciso enviar uma combinação de teclas, simulando o pressionamento de uma tecla (no caso a letra &#8216;1&#8242; ou a tecla F1)  para OUTRA aplicação.</p>
<p>Já consigo identificar a aplicação desejada, mas infelizmente não consigo enviar a mensagem. </p>
<p>Tenho tentado assim, sem sucesso:</p>
<p>      SendMessage(myHandle, WM_SETTEXT, 0, VK_F1);</p>
<p>Tens alguma dica para mim ??</p>
<p>Grato !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delphi: AdapterMacAddress by Gilberto Saraiva</title>
		<link>http://projects.pro.br/gsaraiva/2008/05/delphi-adaptermacaddress/comment-page-1/#comment-3237</link>
		<dc:creator>Gilberto Saraiva</dc:creator>
		<pubDate>Fri, 19 Jun 2009 14:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=33#comment-3237</guid>
		<description>klayt0on, acho que o código está ok, o loop que existe ali é sequencial e improvável ter deadlock nele, tente ver se alguma exceção está sendo levantada e me comunique se existe, caso contrário acho que pode ser a forma de use que você faz ai.</description>
		<content:encoded><![CDATA[<p>klayt0on, acho que o código está ok, o loop que existe ali é sequencial e improvável ter deadlock nele, tente ver se alguma exceção está sendo levantada e me comunique se existe, caso contrário acho que pode ser a forma de use que você faz ai.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
