<?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>^;^ 失落的微点 &#187; Delphi</title>
	<atom:link href="http://www.porry.org/category/develop/delphi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.porry.org</link>
	<description>独挡千古错...冷漠自逍遥...</description>
	<lastBuildDate>Thu, 02 Feb 2012 10:46:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>突然D7起不来</title>
		<link>http://www.porry.org/2009/12/19/d7-suddenly-can-not-start/</link>
		<comments>http://www.porry.org/2009/12/19/d7-suddenly-can-not-start/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 20:17:01 +0000</pubDate>
		<dc:creator>^;^</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[rigistry.slm]]></category>

		<guid isPermaLink="false">http://www.porry.org/?p=47</guid>
		<description><![CDATA[调试程序，报了N个错误，强制关了D7，再重新打开D7，等了一会儿， 提示“Borland license information was found,but is not valid for Delphi You can not run Delphi without this information Click the &#8216;Exit&#8217; button to exit Delphi” 因为&#8221;$:\documents and Settings\当前用户\.borland&#8221;中的一个“registry.slm”文件被破坏，解决的办法就是删除该目录下的这个文件。 重新启动D7,OK]]></description>
			<content:encoded><![CDATA[<p>调试程序，报了N个错误，强制关了D7，再重新打开D7，等了一会儿，<br />
提示“Borland license information was found,but is not valid for Delphi<br />
You can not run Delphi without this information<br />
Click the &#8216;Exit&#8217; button to exit Delphi”</p>
<p>因为&#8221;$:\documents and Settings\当前用户\.borland&#8221;中的一个“registry.slm”文件被破坏，解决的办法就是删除该目录下的这个文件。</p>
<p>重新启动D7,OK</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porry.org/2009/12/19/d7-suddenly-can-not-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>D7中的ServerSocket</title>
		<link>http://www.porry.org/2009/12/19/d7-serversocket/</link>
		<comments>http://www.porry.org/2009/12/19/d7-serversocket/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 20:13:41 +0000</pubDate>
		<dc:creator>^;^</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[dclsockets70.bpl]]></category>
		<category><![CDATA[TClientSocket]]></category>
		<category><![CDATA[TServerSocket]]></category>

		<guid isPermaLink="false">http://www.porry.org/?p=44</guid>
		<description><![CDATA[D7中并没有默认安装TServerSocket及TClientSocket，所以须要自行上Delphi7\Bin目录中找到dclsockets70.bpl进行安装哦。]]></description>
			<content:encoded><![CDATA[<p>D7中并没有默认安装TServerSocket及TClientSocket，所以须要自行上Delphi7\Bin目录中找到dclsockets70.bpl进行安装哦。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porry.org/2009/12/19/d7-serversocket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TDataSource的AutoEdit</title>
		<link>http://www.porry.org/2009/12/17/tdatasource-autoedit/</link>
		<comments>http://www.porry.org/2009/12/17/tdatasource-autoedit/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 14:47:29 +0000</pubDate>
		<dc:creator>^;^</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[AutoEdit]]></category>
		<category><![CDATA[TDataSource]]></category>

		<guid isPermaLink="false">http://www.porry.org/?p=5</guid>
		<description><![CDATA[AutoEdit属性决定了当与一个数据源组件相连的数据控制组件（如DBGrid……）获得焦点时，此数据源组件是否自动地调用数据集组件的Edit方法，允许用户通过数据控制组件编辑数据集中的数据。 AutoEdit 属性的默认值为True，如果AutoEdit属性值为True，当用户想要改变在当前数据控制组件中显示的数据时，应用程序就会自动地调用Edit方法 允许用户对当前数据进行编辑。如果设置AutoEdit属性值为False可以防止用户对当前数据的无意更改，在这种情况下，应用程序可以直接调用数据集 组件的Edit方法来完成对当前数据的编辑。 当改别人程序时。。这个属性值容易乎视的。。]]></description>
			<content:encoded><![CDATA[<p>AutoEdit属性决定了当与一个数据源组件相连的数据控制组件（如DBGrid……）获得焦点时，此数据源组件是否自动地调用数据集组件的Edit方法，允许用户通过数据控制组件编辑数据集中的数据。</p>
<p>AutoEdit 属性的默认值为True，如果AutoEdit属性值为True，当用户想要改变在当前数据控制组件中显示的数据时，应用程序就会自动地调用Edit方法 允许用户对当前数据进行编辑。如果设置AutoEdit属性值为False可以防止用户对当前数据的无意更改，在这种情况下，应用程序可以直接调用数据集 组件的Edit方法来完成对当前数据的编辑。</p>
<p>当改别人程序时。。这个属性值容易乎视的。。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porry.org/2009/12/17/tdatasource-autoedit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

