<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GSaraiva&#039;s Projects &#187; GetDCOrgEx</title>
	<atom:link href="http://projects.pro.br/gsaraiva/tag/getdcorgex/feed/" rel="self" type="application/rss+xml" />
	<link>http://projects.pro.br/gsaraiva</link>
	<description>Step by step</description>
	<lastBuildDate>Tue, 01 Sep 2009 13:14:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Delphi: Utils :: ToolButtonScreenPos</title>
		<link>http://projects.pro.br/gsaraiva/2008/09/delphi-utils-toolbuttonscreenpos/</link>
		<comments>http://projects.pro.br/gsaraiva/2008/09/delphi-utils-toolbuttonscreenpos/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 23:26:16 +0000</pubDate>
		<dc:creator>Gilberto Saraiva</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[GetDCOrgEx]]></category>
		<category><![CDATA[ToolButtonScreenPos]]></category>
		<category><![CDATA[Usefull functions]]></category>

		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=341</guid>
		<description><![CDATA[Folks,
For everybody that needs the ToolButton position:
type&#160;&#160;TToolButtonAccess = class&#40;TToolButton&#41;;&#160;function ToolButtonScreenPos&#40;AToolButton: TToolButton&#41;: TPoint;begin&#160;&#160;GetDCOrgEx&#40;TToolButtonAccess&#40;AToolButton&#41;.Canvas.Handle, Result&#41;;&#160;&#160;Inc&#40;Result.X, AToolButton.Left&#41;;&#160;&#160;Inc&#40;Result.Y, AToolButton.Top&#41;;end;
Hugs!
]]></description>
			<content:encoded><![CDATA[<p><strong>Folks,</strong></p>
<p>For everybody that needs the ToolButton position:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Delphi"><div class="devcodeoverflow"><ol><li><span style="color: #000000; font-weight: bold;">type</span></li><li>&nbsp;&nbsp;TToolButtonAccess <span style="color: #000066;">=</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #000066;">&#40;</span>TToolButton<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;</li><li><span style="color: #000000; font-weight: bold;">function</span> ToolButtonScreenPos<span style="color: #000066;">&#40;</span>AToolButton<span style="color: #000066;">:</span> TToolButton<span style="color: #000066;">&#41;</span><span style="color: #000066;">:</span> TPoint<span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">begin</span></li><li>&nbsp;&nbsp;GetDCOrgEx<span style="color: #000066;">&#40;</span>TToolButtonAccess<span style="color: #000066;">&#40;</span>AToolButton<span style="color: #000066;">&#41;</span><span style="color: #000066;">.</span><span style="color: #006600;">Canvas</span><span style="color: #000066;">.</span><span style="color: #006600;">Handle</span><span style="color: #000066;">,</span> Result<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;<span style="color: #000066;">Inc</span><span style="color: #000066;">&#40;</span>Result<span style="color: #000066;">.</span><span style="color: #006600;">X</span><span style="color: #000066;">,</span> AToolButton<span style="color: #000066;">.</span><span style="color: #006600;">Left</span><span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;<span style="color: #000066;">Inc</span><span style="color: #000066;">&#40;</span>Result<span style="color: #000066;">.</span><span style="color: #006600;">Y</span><span style="color: #000066;">,</span> AToolButton<span style="color: #000066;">.</span><span style="color: #006600;">Top</span><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>Hugs!</p>
]]></content:encoded>
			<wfw:commentRss>http://projects.pro.br/gsaraiva/2008/09/delphi-utils-toolbuttonscreenpos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delphi: Utils :: SpeedButtonScreenPos</title>
		<link>http://projects.pro.br/gsaraiva/2008/09/delphi-utils-speedbuttonscreenpos/</link>
		<comments>http://projects.pro.br/gsaraiva/2008/09/delphi-utils-speedbuttonscreenpos/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 23:24:54 +0000</pubDate>
		<dc:creator>Gilberto Saraiva</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[GetDCOrgEx]]></category>
		<category><![CDATA[SpeedButtonScreenPos]]></category>
		<category><![CDATA[Usefull functions]]></category>

		<guid isPermaLink="false">http://gsaraiva.projects.pro.br/?p=339</guid>
		<description><![CDATA[Folks,
For everybody that needs the Speedbutton position:
type&#160;&#160;TSpeedButtonAccess = class&#40;TSpeedButton&#41;;&#160;function SpeedButtonScreenPos&#40;ASpeedButton: TSpeedButton&#41;: TPoint;begin&#160;&#160;GetDCOrgEx&#40;TSpeedButtonAccess&#40;ASpeedButton&#41;.Canvas.Handle, Result&#41;;&#160;&#160;Inc&#40;Result.X, ASpeedButton.Left&#41;;&#160;&#160;Inc&#40;Result.Y, ASpeedButton.Top&#41;;end;
Hugs!
]]></description>
			<content:encoded><![CDATA[<p><strong>Folks,</strong></p>
<p>For everybody that needs the Speedbutton position:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Delphi"><div class="devcodeoverflow"><ol><li><span style="color: #000000; font-weight: bold;">type</span></li><li>&nbsp;&nbsp;TSpeedButtonAccess <span style="color: #000066;">=</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #000066;">&#40;</span>TSpeedButton<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;</li><li><span style="color: #000000; font-weight: bold;">function</span> SpeedButtonScreenPos<span style="color: #000066;">&#40;</span>ASpeedButton<span style="color: #000066;">:</span> TSpeedButton<span style="color: #000066;">&#41;</span><span style="color: #000066;">:</span> TPoint<span style="color: #000066;">;</span></li><li><span style="color: #000000; font-weight: bold;">begin</span></li><li>&nbsp;&nbsp;GetDCOrgEx<span style="color: #000066;">&#40;</span>TSpeedButtonAccess<span style="color: #000066;">&#40;</span>ASpeedButton<span style="color: #000066;">&#41;</span><span style="color: #000066;">.</span><span style="color: #006600;">Canvas</span><span style="color: #000066;">.</span><span style="color: #006600;">Handle</span><span style="color: #000066;">,</span> Result<span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;<span style="color: #000066;">Inc</span><span style="color: #000066;">&#40;</span>Result<span style="color: #000066;">.</span><span style="color: #006600;">X</span><span style="color: #000066;">,</span> ASpeedButton<span style="color: #000066;">.</span><span style="color: #006600;">Left</span><span style="color: #000066;">&#41;</span><span style="color: #000066;">;</span></li><li>&nbsp;&nbsp;<span style="color: #000066;">Inc</span><span style="color: #000066;">&#40;</span>Result<span style="color: #000066;">.</span><span style="color: #006600;">Y</span><span style="color: #000066;">,</span> ASpeedButton<span style="color: #000066;">.</span><span style="color: #006600;">Top</span><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>Hugs!</p>
]]></content:encoded>
			<wfw:commentRss>http://projects.pro.br/gsaraiva/2008/09/delphi-utils-speedbuttonscreenpos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
