<?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"
	>
<channel>
	<title>Comments for DelphiTips.net</title>
	<atom:link href="http://www.delphitips.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.delphitips.net</link>
	<description>...free Delphi tips &#38; source code repository</description>
	<pubDate>Thu, 20 Nov 2008 09:22:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on CRC32 (Cyclic Redundency Check) by admin</title>
		<link>http://www.delphitips.net/2008/01/01/crc32-cyclic-redundency-check/#comment-14</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 08 Sep 2008 16:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.delphitips.net/2008/01/01/crc32-cyclic-redundency-check/#comment-14</guid>
		<description>to gord: The problem is here, on the web, not with the code itself. Source code highlighter on my blog page interprets &lt;&gt; as an HTML tag and replace it with &#60; character. Myabe even here in comment section it will be "converted". Anyway, the correct part of code should be like this:

if crc&lt;&gt;0 then...</description>
		<content:encoded><![CDATA[<p>to gord: The problem is here, on the web, not with the code itself. Source code highlighter on my blog page interprets <> as an HTML tag and replace it with &lt; character. Myabe even here in comment section it will be &#8220;converted&#8221;. Anyway, the correct part of code should be like this:</p>
<p>if crc<>0 then&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CRC32 (Cyclic Redundency Check) by gord</title>
		<link>http://www.delphitips.net/2008/01/01/crc32-cyclic-redundency-check/#comment-13</link>
		<dc:creator>gord</dc:creator>
		<pubDate>Mon, 08 Sep 2008 03:26:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.delphitips.net/2008/01/01/crc32-cyclic-redundency-check/#comment-13</guid>
		<description>Great tip. However:

code:

if crc&#60;&#62;0 then ShowMessage(IntToHex(crc,6));

build:

[Error] Unit1.pas(124): Illegal character in input file: '&#38;' ($26)

on both d5 and d7</description>
		<content:encoded><![CDATA[<p>Great tip. However:</p>
<p>code:</p>
<p>if crc&lt;&gt;0 then ShowMessage(IntToHex(crc,6));</p>
<p>build:</p>
<p>[Error] Unit1.pas(124): Illegal character in input file: &#8216;&amp;&#8217; ($26)</p>
<p>on both d5 and d7</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create autorun registry key (run application with Windows start) by gord</title>
		<link>http://www.delphitips.net/2007/06/16/create-autorun-registry-key-run-application-with-windows-start/#comment-12</link>
		<dc:creator>gord</dc:creator>
		<pubDate>Wed, 13 Aug 2008 21:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.delphitips.net/2007/06/16/create-autorun-registry-key-run-application-with-windows-start/#comment-12</guid>
		<description>Heh. That's why you're admin and I just...well, you know :)

BTW, this is awesome site - I find a lot of tips not available on other Delphi tips sites. Hat down.

gord</description>
		<content:encoded><![CDATA[<p>Heh. That&#8217;s why you&#8217;re admin and I just&#8230;well, you know <img src='http://www.delphitips.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>BTW, this is awesome site - I find a lot of tips not available on other Delphi tips sites. Hat down.</p>
<p>gord</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create autorun registry key (run application with Windows start) by admin</title>
		<link>http://www.delphitips.net/2007/06/16/create-autorun-registry-key-run-application-with-windows-start/#comment-11</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 13 Aug 2008 18:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.delphitips.net/2007/06/16/create-autorun-registry-key-run-application-with-windows-start/#comment-11</guid>
		<description>to gord: Sorry, but I don't understand your question. You can do it exactly as you mentioned.:-)

You can use something like this:

if Reg.OpenKey(Key,False) then Reg.WriteString(key, 'MyApp', Application.ExeName);</description>
		<content:encoded><![CDATA[<p>to gord: Sorry, but I don&#8217;t understand your question. You can do it exactly as you mentioned.:-)</p>
<p>You can use something like this:</p>
<p>if Reg.OpenKey(Key,False) then Reg.WriteString(key, &#8216;MyApp&#8217;, Application.ExeName);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create autorun registry key (run application with Windows start) by gord</title>
		<link>http://www.delphitips.net/2007/06/16/create-autorun-registry-key-run-application-with-windows-start/#comment-10</link>
		<dc:creator>gord</dc:creator>
		<pubDate>Wed, 13 Aug 2008 16:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.delphitips.net/2007/06/16/create-autorun-registry-key-run-application-with-windows-start/#comment-10</guid>
		<description>Thank you for this code. One question: How could I change:
 
'c:\MyApp.exe' 

to something like this:

'ExtractFilePath(Application.ExeName)\MyApp.exe'

Thanks</description>
		<content:encoded><![CDATA[<p>Thank you for this code. One question: How could I change:</p>
<p>&#8216;c:\MyApp.exe&#8217; </p>
<p>to something like this:</p>
<p>&#8216;ExtractFilePath(Application.ExeName)\MyApp.exe&#8217;</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Global system hotkey by rufus.spb</title>
		<link>http://www.delphitips.net/2007/04/01/global-system-hotkey/#comment-6</link>
		<dc:creator>rufus.spb</dc:creator>
		<pubDate>Thu, 02 Aug 2007 21:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.delphitips.net/2007/04/01/global-system-hotkey/#comment-6</guid>
		<description>Thanks! :) 

By the way: MOD_WIN, MOD_CONTROL, MOD_SHIFT, MOD_ALT are Delphi "windows.pas" standart constants. No need to write &lt;code&gt;const MOD_CONTROL = 2;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks! <img src='http://www.delphitips.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>By the way: MOD_WIN, MOD_CONTROL, MOD_SHIFT, MOD_ALT are Delphi &#8220;windows.pas&#8221; standart constants. No need to write <code>const MOD_CONTROL = 2;</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
