<?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>Merlin&#039;s Delphi Forge &#187; System</title>
	<atom:link href="http://www.delphifaq.net/tag/system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.delphifaq.net</link>
	<description>By a Programmer for Programmers...</description>
	<lastBuildDate>Sat, 13 Mar 2010 19:00:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Determine if There is Anything in the Clipboard</title>
		<link>http://www.delphifaq.net/how-to-determine-if-there-is-anything-in-the-clipboard/</link>
		<comments>http://www.delphifaq.net/how-to-determine-if-there-is-anything-in-the-clipboard/#comments</comments>
		<pubDate>Thu, 16 Dec 1999 03:02:58 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[clipboard]]></category>
		<category><![CDATA[clipboard changes]]></category>
		<category><![CDATA[clipboard contents]]></category>
		<category><![CDATA[clipboard viewer chain]]></category>
		<category><![CDATA[clipboard viewer window]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[determine]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[object pascal]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[paste]]></category>
		<category><![CDATA[paste function]]></category>
		<category><![CDATA[paste menu]]></category>
		<category><![CDATA[sendmessage]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows messages]]></category>
		<category><![CDATA[wm]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/how-to-determine-if-there-is-anything-in-the-clipboard</guid>
		<description><![CDATA[When creating a text editor (or any other kind of program that uses the Clipboard you always insert code to determine if there is anything to copy or cut and to update the menus. Well, you should also do this for the paste function. The whole idea is based on Windows messages and is very [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-determine-if-there-is-anything-in-the-clipboard/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Get the Windows System Directory</title>
		<link>http://www.delphifaq.net/how-to-get-the-windows-system-directory/</link>
		<comments>http://www.delphifaq.net/how-to-get-the-windows-system-directory/#comments</comments>
		<pubDate>Thu, 16 Dec 1999 00:56:12 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[GetWindowsDirectory]]></category>
		<category><![CDATA[object pascal]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/faq/how-to-get-the-windows-system-directory</guid>
		<description><![CDATA[To found out the name of the Windows directory it&#8217;s best to use the Windows API GetSystemDirectory() function. Here&#8217;s the Delphi implementation: uses Windows; ... function GetSystemDir: string; const (* The length of the directory buffer. Usually 64 or even 16 is enough ** ** Must be DWORD type. *) dwLength: DWORD = 255; var [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-get-the-windows-system-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get the Windows Directory</title>
		<link>http://www.delphifaq.net/how-to-get-the-windows-directory/</link>
		<comments>http://www.delphifaq.net/how-to-get-the-windows-directory/#comments</comments>
		<pubDate>Thu, 16 Dec 1999 00:55:20 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[GetWindowsDirectory]]></category>
		<category><![CDATA[object pascal]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/faq/how-to-get-the-windows-directory</guid>
		<description><![CDATA[To found out the name of the Windows directory it&#8217;s best to use the Windows API GetWindowsDirectory() function. Here&#8217;s the Delphi implementation: uses Windows; ... function GetWindowsDir: string; const (* The length of the directory buffer. Usually 64 or even 16 is enough ** ** Must be DWORD type. *) dwLength: DWORD = 255; var [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-get-the-windows-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Check if You are Connected to the Internet</title>
		<link>http://www.delphifaq.net/how-to-check-if-you-are-connected-to-the-internet/</link>
		<comments>http://www.delphifaq.net/how-to-check-if-you-are-connected-to-the-internet/#comments</comments>
		<pubDate>Wed, 15 Dec 1999 22:17:01 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[Internet / LAN]]></category>
		<category><![CDATA[access violation]]></category>
		<category><![CDATA[borland]]></category>
		<category><![CDATA[class exception]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[dialup]]></category>
		<category><![CDATA[hkey current user]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[internet server]]></category>
		<category><![CDATA[internet settings]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[proxyserver]]></category>
		<category><![CDATA[ras]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[winsock]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/how-to-check-if-you-are-connected-to-the-internet</guid>
		<description><![CDATA[Whenever you try to connect to connect to a Internet server while no Internet connection is present you can be almost certain an Access Violation will fire. The only way around this is to check whether a connection is present or not. You can use the code below. uses Windows, SysUtils, Registry, WinSock, WinInet; ... [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-check-if-you-are-connected-to-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install Different Versions of Delphi on one System</title>
		<link>http://www.delphifaq.net/how-to-install-different-versions-of-delphi-on-one-system/</link>
		<comments>http://www.delphifaq.net/how-to-install-different-versions-of-delphi-on-one-system/#comments</comments>
		<pubDate>Wed, 15 Dec 1999 22:05:19 +0000</pubDate>
		<dc:creator>m3Rlin</dc:creator>
				<category><![CDATA[Delphi / Kylix IDE]]></category>
		<category><![CDATA[codegear]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Delphi]]></category>
		<category><![CDATA[delphi 1]]></category>
		<category><![CDATA[different]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[m3rlin]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.delphifaq.net/how-to-install-different-versions-of-delphi-on-one-system</guid>
		<description><![CDATA[You shouldn&#8217;t have any problems installing and using more than one version of Delphi on one computer. All you have to do is install each version in different directories (setup does this by default) and keep in mind to install the versions from oldest to newest (Delphi 1 first &#8230; Delphi 2005 / CodeGear &#8211; [...]]]></description>
		<wfw:commentRss>http://www.delphifaq.net/how-to-install-different-versions-of-delphi-on-one-system/feed/</wfw:commentRss>
		<slash:comments>-3</slash:comments>
		</item>
	</channel>
</rss>
