<?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"
	>

<channel>
	<title>我爱builder</title>
	<atom:link href="http://www.smartcard24.info/feed" rel="self" type="application/rss+xml" />
	<link>http://www.smartcard24.info</link>
	<description>C++Builder 程序员博客</description>
	<pubDate>Sun, 07 Sep 2008 15:05:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>[测试][服务器][开通]测试服务器80端口是否开通，当ip不存在或者端口不开的情况下程序无反应，求救！</title>
		<link>http://www.smartcard24.info/2008/09/%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%bc%80%e9%80%9a%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a880%e7%ab%af%e5%8f%a3%e6%98%af%e5%90%a6%e5%bc%80%e9%80%9a%ef%bc%8c%e5%bd%93ip%e4%b8%8d_1305.html</link>
		<comments>http://www.smartcard24.info/2008/09/%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%bc%80%e9%80%9a%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a880%e7%ab%af%e5%8f%a3%e6%98%af%e5%90%a6%e5%bc%80%e9%80%9a%ef%bc%8c%e5%bd%93ip%e4%b8%8d_1305.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 15:05:00 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[开通]]></category>

		<category><![CDATA[服务器]]></category>

		<category><![CDATA[测试]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%bc%80%e9%80%9a%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a880%e7%ab%af%e5%8f%a3%e6%98%af%e5%90%a6%e5%bc%80%e9%80%9a%ef%bc%8c%e5%bd%93ip%e4%b8%8d_1305.html</guid>
		<description><![CDATA[bool &#160; __fastcall &#160; TForm1::Port(char &#160; *ip,int &#160; port)  { 
  &#160;  &#160; 	WORD &#160; wVersionRequested;  	WSADATA &#160; wsaData;  	int &#160; err; 
 	wVersionRequested &#160; = &#160; MAKEWORD( &#160; 1, &#160; 1 &#160; ); 
 	err &#160; = &#160; WSAStartup( &#160; wVersionRequested, &#160; &#38;wsaData &#160; );  	if &#160; ( [...]]]></description>
			<content:encoded><![CDATA[<p>bool &nbsp; __fastcall &nbsp; TForm1::Port(char &nbsp; *ip,int &nbsp; port) <br /> { </p>
<p>  &nbsp;  &nbsp; 	WORD &nbsp; wVersionRequested; <br /> 	WSADATA &nbsp; wsaData; <br /> 	int &nbsp; err; </p>
<p> 	wVersionRequested &nbsp; = &nbsp; MAKEWORD( &nbsp; 1, &nbsp; 1 &nbsp; ); </p>
<p> 	err &nbsp; = &nbsp; WSAStartup( &nbsp; wVersionRequested, &nbsp; &amp;wsaData &nbsp; ); <br /> 	if &nbsp; ( &nbsp; err &nbsp; != &nbsp; 0 &nbsp; ) &nbsp; { </p>
<p> 		return &nbsp; false; <br /> 	} </p>
<p> 	if &nbsp; ( &nbsp; LOBYTE( &nbsp; wsaData.wVersion &nbsp; ) &nbsp; != &nbsp; 1 &nbsp; || <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; HIBYTE( &nbsp; wsaData.wVersion &nbsp; ) &nbsp; != &nbsp; 1 &nbsp; ) &nbsp; { <br /> 		WSACleanup( &nbsp; ); <br /> 		return &nbsp; false; <br /> 	} <br /> 	SOCKET &nbsp; sockClient=socket(AF_INET,SOCK_STREAM,0); </p>
<p> 	SOCKADDR_IN &nbsp; addrSrv; <br /> 	addrSrv.sin_addr.S_un.S_addr=inet_addr(ip); <br /> 	addrSrv.sin_family=AF_INET; <br /> 	addrSrv.sin_port=htons(port); <br /> 	int &nbsp; nret=connect(sockClient,(SOCKADDR*)&amp;addrSrv,sizeof(SOCKADDR)); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  <br /> 	if(nret==0) <br /> 	{ <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; closesocket(sockClient); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; WSACleanup(); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; return &nbsp; true; <br /> 	} <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; else <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; { <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; closesocket(sockClient); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; WSACleanup(); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; return &nbsp; false; <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; } </p>
<p> }</p>
<p>可以先检查一下IP是不是可用的，然后再扫描端口就ＯＫ了</td>
<p>这段代码有问题吧？ </p>
<p> if(nret==0) <br /> { <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; closesocket(sockClient); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; WSACleanup(); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; return &nbsp; true; <br /> } <br /> else <br /> { <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp; closesocket(sockClient); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp; WSACleanup(); <br />  &nbsp;  &nbsp;  &nbsp;  &nbsp; return &nbsp; false; <br /> }  </td>
<p>用异步的方式，自己控制超时（0-1000000&#8230;ms）！</td>
<p>connect后用select来检测结果</td>
<p>具体怎么避免ip不存在，或者端口没开的问题呢？</td>
<p><span class='adminOpera'>该回复于2008-07-19 16:13:33被版主删除</span></td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%bc%80%e9%80%9a%e6%b5%8b%e8%af%95%e6%9c%8d%e5%8a%a1%e5%99%a880%e7%ab%af%e5%8f%a3%e6%98%af%e5%90%a6%e5%bc%80%e9%80%9a%ef%bc%8c%e5%bd%93ip%e4%b8%8d_1305.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[本人][收购][软件]本人收购软件，做的不错的工具软件，共享软件，小软件什么的，我都收购（长期有效）</title>
		<link>http://www.smartcard24.info/2008/09/%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%ef%bc%8c%e5%81%9a%e7%9a%84%e4%b8%8d%e9%94%99%e7%9a%84%e5%b7%a5%e5%85%b7%e8%bd%af_1304.html</link>
		<comments>http://www.smartcard24.info/2008/09/%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%ef%bc%8c%e5%81%9a%e7%9a%84%e4%b8%8d%e9%94%99%e7%9a%84%e5%b7%a5%e5%85%b7%e8%bd%af_1304.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 15:04:50 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[收购]]></category>

		<category><![CDATA[本人]]></category>

		<category><![CDATA[软件]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%ef%bc%8c%e5%81%9a%e7%9a%84%e4%b8%8d%e9%94%99%e7%9a%84%e5%b7%a5%e5%85%b7%e8%bd%af_1304.html</guid>
		<description><![CDATA[最近，受朋友之托，来此收购BCB开发的共享软件，或者自己感觉做的不错的小工具软件，如果哪位朋友有用BCB做的得意之作想出售的请联系我！
JF
看软件定价格，我是认真的，请有的人联系我QQ:2155755
强制锁定桌面的要不？  重启后仍能保持锁定
20万的要不?
只要BCB的么？
最好是bcb开发的，有的请赶紧联系我
顶一下，没有可以合作的人吗？  
要提供协议、或者合同之类的文档参考
嘿嘿,看看我的网站吧  http://www.devloft.cn
http://download.csdn.net/user/windsky0821  瞧瞧先，要软件个儿下BCB原汁原味的，要代码再说哈  http://homesoft.goofar.com
to &#160; joyous： &#160;  &#160;  &#160;  &#160;  &#160; 需要代码并提供相关文档，和协议说明  to &#160; windsky0821: &#160; 你如果有好的软件，可以联系我QQ:21557555
to &#160; ZQGet() &#160; :可以和我联系，我收购你的软件和代码
生意这么火
有钱途
我自己做了一个图像处理软件(bmp)!  可以实现对文字的提取  能值多少?
看具体演示而定
顶
mark
我用BCB做了一个  1、.net &#160; C# &#160; 对数据库操作的代码生成器，  2、数据库安装工具，  需要的话联系我  QQ:63467695  e-mail:hbqc_zh@163.com  MSN:hbqc_zh@hotmail.com
继续收购啊，有的联系我啊
up.
windsky0821&#160; : http://www.devloft.cn&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>最近，受朋友之托，来此收购BCB开发的共享软件，或者自己感觉做的不错的小工具软件，如果哪位朋友有用BCB做的得意之作想出售的请联系我！</p>
<p>JF</td>
<p>看软件定价格，我是认真的，请有的人联系我QQ:2155755</td>
<p>强制锁定桌面的要不？ <br /> 重启后仍能保持锁定</td>
<p>20万的要不?</td>
<p>只要BCB的么？</td>
<p>最好是bcb开发的，有的请赶紧联系我</td>
<p>顶一下，没有可以合作的人吗？  </td>
<p>要提供协议、或者合同之类的文档参考</td>
<p>嘿嘿,看看我的网站吧 <br /> http://www.devloft.cn</td>
<p>http://download.csdn.net/user/windsky0821 <br /> 瞧瞧先，要软件个儿下BCB原汁原味的，要代码再说哈 <br /> http://homesoft.goofar.com</td>
<p>to &nbsp; joyous： &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp; 需要代码并提供相关文档，和协议说明 <br /> to &nbsp; windsky0821: &nbsp; 你如果有好的软件，可以联系我QQ:21557555</td>
<p>to &nbsp; ZQGet() &nbsp; :可以和我联系，我收购你的软件和代码</td>
<p>生意这么火</td>
<p>有钱途</td>
<p>我自己做了一个图像处理软件(bmp)! <br /> 可以实现对文字的提取 <br /> 能值多少?</td>
<p>看具体演示而定</td>
<p>顶</td>
<p>mark</td>
<p>我用BCB做了一个 <br /> 1、.net &nbsp; C# &nbsp; 对数据库操作的代码生成器， <br /> 2、数据库安装工具， <br /> 需要的话联系我 <br /> QQ:63467695 <br /> e-mail:hbqc_zh@163.com <br /> MSN:hbqc_zh@hotmail.com</td>
<p>继续收购啊，有的联系我啊</td>
<p>up.</td>
<p>windsky0821&nbsp; : http://www.devloft.cn&nbsp; 那&#32178;站有木&#39340;，要小心。NOD32&#22577;的. </p>
</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%e6%9c%ac%e4%ba%ba%e6%94%b6%e8%b4%ad%e8%bd%af%e4%bb%b6%ef%bc%8c%e5%81%9a%e7%9a%84%e4%b8%8d%e9%94%99%e7%9a%84%e5%b7%a5%e5%85%b7%e8%bd%af_1304.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[奉献][builder][2007]奉献c  builder 2007 完全安装版本，带破解。</title>
		<link>http://www.smartcard24.info/2008/09/%e5%a5%89%e7%8c%aebuilder2007%e5%a5%89%e7%8c%aec-builder-2007-%e5%ae%8c%e5%85%a8%e5%ae%89%e8%a3%85%e7%89%88%e6%9c%ac%ef%bc%8c%e5%b8%a6%e7%a0%b4%e8%a7%a3%e3%80%82_1303.html</link>
		<comments>http://www.smartcard24.info/2008/09/%e5%a5%89%e7%8c%aebuilder2007%e5%a5%89%e7%8c%aec-builder-2007-%e5%ae%8c%e5%85%a8%e5%ae%89%e8%a3%85%e7%89%88%e6%9c%ac%ef%bc%8c%e5%b8%a6%e7%a0%b4%e8%a7%a3%e3%80%82_1303.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 15:04:43 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[2007]]></category>

		<category><![CDATA[奉献]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/%e5%a5%89%e7%8c%aebuilder2007%e5%a5%89%e7%8c%aec-builder-2007-%e5%ae%8c%e5%85%a8%e5%ae%89%e8%a3%85%e7%89%88%e6%9c%ac%ef%bc%8c%e5%b8%a6%e7%a0%b4%e8%a7%a3%e3%80%82_1303.html</guid>
		<description><![CDATA[c++builder2007 下载地址，iso文件，用winrar解压就可以安装  http://www.ccysy.com/Article/Article_20070930130759.html
123
安装序列号和注册名及密码有人知道吗?
老妖的www.ccrun.com早就有下载了
不过，还是谢谢楼主的热情！
我帮老妖的网站分担分担流量
谢谢了，我找了很久了
1.6G,能不能精减到1个CDROM？
安装时是否需要联网?
谢谢楼主!
速度不错平均0.8M/s  不怕把你们学校的服务器拖垮了吧！   
呵呵，当然怕了，所以也希望大家都手下留情，如果谁有什么好东西可以放到我的服务器上供大家下载!
谢了！
确实不错，下载速度很快。 
 我安装了，是正宗完整版本。Borland建筑师版本，包含C++Builder 2007，Delphi和Delphi.NET，属于Update 3版。其它网上我没看到过。太棒了！ 
 谢谢楼主！
太棒了！  
 谢谢楼主！
尚未下载，先感谢一下。
下载中。。。。。 谢谢。
确实不错，下载速度很快。  
 我安装了，是正宗完整版本。Borland建筑师版本，包含C++Builder&#160;  2007，Delphi和Delphi.NET，属于Update&#160;  3版。其它网上我没看到过。太棒了！  
 谢谢楼主！
下载看看，谢楼主
20070930?这不是最新的包吧？建议要么重新做一份（原件：http://altd.codegear.com/download/radstudio2007/CodeGearRADStudio2007_v11.0.2804.9245.5.iso），谢谢。
&#160; 一个小学的网站吗,居然有这么先进的东西 ,实在好.
谢*2007+CB
楼主，包含Delphi2007吗？？
这不会是七剑提供的吧，你们看，他网上也有啊 
 http://www.zzg.3126.net/ShowFile.asp?FID=188
的确是好东西啊，太感谢了。。。
正在下，谢谢您！
我下了,但是不敢安装,我的机子上安装有BCB6,我不知道与2007有没有冲突!
我下了,但是不敢安装,我的机子上安装有BCB6,我不知道与2007有没有冲突!  ==================  不会冲突。
mark 
下载完了，安装说我序列号不正确，没法安装
删除自带的radstudio2007.slip文件(建议备份起来)，不是就无法出现输入序列号的界面
安装超级慢，和VS2005不相上下……
到处在找啊，谢谢楼主的奉献&#8230;
谢谢了!  速度很快,1.13M/S ,不错,你学校的带宽够强的!
谢了
不用客气，我这里是网通的，速度还可以，但是电信的用户访问就完蛋了
很可惜啊，这个版本的soap webservice application开发向导产生的代码就有问题，编译能通过，但不能运行（注册），还不如C++Builder 6.0。
体积太大了，我的电脑受不了，iso文件直接就可以运行安装吗？
正在下载速度很快啊~&#11774;2.6MB  
安装序列号和注册名及密码要怎么获取呀，请问有没有谁说下，谢谢
谢谢，下载了，可以用。  好像安装时不需要序列好等。
up
安装序列号和注册名及密码要怎么获取呀，请问有没有谁说下，谢谢  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-  里边有个破解文件的文件夹里有啊
to h98458   [...]]]></description>
			<content:encoded><![CDATA[<p>c++builder2007 下载地址，iso文件，用winrar解压就可以安装 <br /> http://www.ccysy.com/Article/Article_20070930130759.html</p>
<p>123</td>
<p>安装序列号和注册名及密码有人知道吗?</td>
<p>老妖的www.ccrun.com早就有下载了</td>
<p>不过，还是谢谢楼主的热情！</td>
<p>我帮老妖的网站分担分担流量</td>
<p>谢谢了，我找了很久了</td>
<p>1.6G,能不能精减到1个CDROM？</td>
<p>安装时是否需要联网?</td>
<p>谢谢楼主!</td>
<p>速度不错平均0.8M/s <br /> 不怕把你们学校的服务器拖垮了吧！ <br /> <img src='http://www.smartcard24.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </td>
<p>呵呵，当然怕了，所以也希望大家都手下留情，如果谁有什么好东西可以放到我的服务器上供大家下载!</td>
<p>谢了！</td>
<p>确实不错，下载速度很快。 </p>
<p> 我安装了，是正宗完整版本。Borland建筑师版本，包含C++Builder 2007，Delphi和Delphi.NET，属于Update 3版。其它网上我没看到过。太棒了！ </p>
<p> 谢谢楼主！</td>
<p>太棒了！  </p>
<p> 谢谢楼主！</td>
<p>尚未下载，先感谢一下。</td>
<p>下载中。。。。。 谢谢。</td>
<p>确实不错，下载速度很快。  </p>
<p> 我安装了，是正宗完整版本。Borland建筑师版本，包含C++Builder&nbsp;  2007，Delphi和Delphi.NET，属于Update&nbsp;  3版。其它网上我没看到过。太棒了！  </p>
<p> 谢谢楼主！</td>
<p>下载看看，谢楼主</td>
<p>20070930?这不是最新的包吧？建议要么重新做一份（原件：<a href="http://altd.codegear.com/download/radstudio2007/CodeGearRADStudio2007_v11.0.2804.9245.5.iso" target="_blank" >http://altd.codegear.com/download/radstudio2007/CodeGearRADStudio2007_v11.0.2804.9245.5.iso</a>），谢谢。</td>
<p>&nbsp; 一个小学的网站吗,居然有这么先进的东西 ,实在好.</td>
<p>谢*2007+CB</td>
<p>楼主，包含Delphi2007吗？？</td>
<p>这不会是七剑提供的吧，你们看，他网上也有啊 </p>
<p> http://www.zzg.3126.net/ShowFile.asp?FID=188</td>
<p>的确是好东西啊，太感谢了。。。</td>
<p>正在下，谢谢您！</td>
<p>我下了,但是不敢安装,我的机子上安装有BCB6,我不知道与2007有没有冲突!</td>
<p>我下了,但是不敢安装,我的机子上安装有BCB6,我不知道与2007有没有冲突! <br /> ================== <br /> 不会冲突。</td>
<p>mark </td>
<p>下载完了，安装说我序列号不正确，没法安装</td>
<p>删除自带的radstudio2007.slip文件(建议备份起来)，不是就无法出现输入序列号的界面</td>
<p>安装超级慢，和VS2005不相上下……</td>
<p>到处在找啊，谢谢楼主的奉献&#8230;</td>
<p>谢谢了! <br /> 速度很快,1.13M/S ,不错,你学校的带宽够强的!</td>
<p>谢了</td>
<p>不用客气，我这里是网通的，速度还可以，但是电信的用户访问就完蛋了</td>
<p>很可惜啊，这个版本的soap webservice application开发向导产生的代码就有问题，编译能通过，但不能运行（注册），还不如C++Builder 6.0。</td>
<p>体积太大了，我的电脑受不了，iso文件直接就可以运行安装吗？</td>
<p>正在下载速度很快啊~&#11774;2.6MB  </td>
<p>安装序列号和注册名及密码要怎么获取呀，请问有没有谁说下，谢谢</td>
<p>谢谢，下载了，可以用。 <br /> 好像安装时不需要序列好等。</td>
<p>up</td>
<p>安装序列号和注册名及密码要怎么获取呀，请问有没有谁说下，谢谢 <br /> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- <br /> 里边有个破解文件的文件夹里有啊</td>
<p>to h98458 <br />  安装序列好，到Codegear申请个，网上也有， <br /> 安装完后，不要运行，直接用那个破解的覆盖原来的文件即可 <br /> 既然带了破解，可能也带了sn，我没下载过，  </td>
<p>谢谢。。。。。。</td>
<p>感谢楼主~</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/%e5%a5%89%e7%8c%aebuilder2007%e5%a5%89%e7%8c%aec-builder-2007-%e5%ae%8c%e5%85%a8%e5%ae%89%e8%a3%85%e7%89%88%e6%9c%ac%ef%bc%8c%e5%b8%a6%e7%a0%b4%e8%a7%a3%e3%80%82_1303.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[动态][Acess时][密码]ADO动态连接Acess时，不加密码，可以但是加了密码后，总是报错，请问连接字符串应该怎么写</title>
		<link>http://www.smartcard24.info/2008/09/%e5%8a%a8%e6%80%81acess%e6%97%b6%e5%af%86%e7%a0%81ado%e5%8a%a8%e6%80%81%e8%bf%9e%e6%8e%a5acess%e6%97%b6%ef%bc%8c%e4%b8%8d%e5%8a%a0%e5%af%86%e7%a0%81%ef%bc%8c%e5%8f%af%e4%bb%a5%e4%bd%86%e6%98%af_1302.html</link>
		<comments>http://www.smartcard24.info/2008/09/%e5%8a%a8%e6%80%81acess%e6%97%b6%e5%af%86%e7%a0%81ado%e5%8a%a8%e6%80%81%e8%bf%9e%e6%8e%a5acess%e6%97%b6%ef%bc%8c%e4%b8%8d%e5%8a%a0%e5%af%86%e7%a0%81%ef%bc%8c%e5%8f%af%e4%bb%a5%e4%bd%86%e6%98%af_1302.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 14:04:41 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[Acess时]]></category>

		<category><![CDATA[动态]]></category>

		<category><![CDATA[密码]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/%e5%8a%a8%e6%80%81acess%e6%97%b6%e5%af%86%e7%a0%81ado%e5%8a%a8%e6%80%81%e8%bf%9e%e6%8e%a5acess%e6%97%b6%ef%bc%8c%e4%b8%8d%e5%8a%a0%e5%af%86%e7%a0%81%ef%bc%8c%e5%8f%af%e4%bb%a5%e4%bd%86%e6%98%af_1302.html</guid>
		<description><![CDATA[AnsiString&#160;  str=&#34;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&#34;;  &#160; &#160; &#160; &#160; str += fileDB+&#34;;Persist Security Info=false; &#34;;  上面是我的连接字符串，没密码是正确的，有密码后，不知道连接字符串该怎么变，试了几个也不行，请高手指教，我用的是Access2003
全部的测试连接串为:  Provider=Microsoft.Jet.OLEDB.4.0;Password=qqq;Data Source=aaa;Persist Security Info=True
Provider=Microsoft.Jet.OLEDB.4.0;  Data Source=E:\DATA\ddd.MDB;  Persist Security Info=False;  //下面的指定你设置ACCESS的密码.  Jet OLEDB:Database Password=11223344


C/C++ code



ado_Connection-&#62;LoginPrompt = false;





不管连接什么数据库，新建一个文本文档，后缀改成UDL，双击打开配置好，再用记事本打开，里面的内容用来做连接字符串就可以了

]]></description>
			<content:encoded><![CDATA[<p>AnsiString&nbsp;  str=&quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&quot;; <br /> &nbsp; &nbsp; &nbsp; &nbsp; str += fileDB+&quot;;Persist Security Info=false; &quot;; <br /> 上面是我的连接字符串，没密码是正确的，有密码后，不知道连接字符串该怎么变，试了几个也不行，请高手指教，我用的是Access2003</p>
<p>全部的测试连接串为: <br /> Provider=Microsoft.Jet.OLEDB.4.0;Password=qqq;Data Source=aaa;Persist Security Info=True</td>
<p>Provider=Microsoft.Jet.OLEDB.4.0; <br /> Data Source=E:\DATA\ddd.MDB; <br /> Persist Security Info=False; <br /> //下面的指定你设置ACCESS的密码. <br /> Jet OLEDB:Database Password=11223344</td>
<p>
<dl class='code'>
<dt>C/C++ code</dt>
<dd>
<pre>
<div><!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><span style="color: #000000;">
ado_Connection</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">LoginPrompt </span><span style="color: #000000;">=</span><span style="color: #000000;"> </span><span style="color: #0000FF;">false</span><span style="color: #000000;">;
</span></div>
</pre>
</dd>
</dl>
</td>
<p>不管连接什么数据库，新建一个文本文档，后缀改成UDL，双击打开配置好，再用记事本打开，里面的内容用来做连接字符串就可以了</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/%e5%8a%a8%e6%80%81acess%e6%97%b6%e5%af%86%e7%a0%81ado%e5%8a%a8%e6%80%81%e8%bf%9e%e6%8e%a5acess%e6%97%b6%ef%bc%8c%e4%b8%8d%e5%8a%a0%e5%af%86%e7%a0%81%ef%bc%8c%e5%8f%af%e4%bb%a5%e4%bd%86%e6%98%af_1302.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[PowerSock][组件][提示]PowerSock组件提示connection failed(errcode:10035)</title>
		<link>http://www.smartcard24.info/2008/09/powersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%bapowersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%baconnection-failederrcode10035_1301.html</link>
		<comments>http://www.smartcard24.info/2008/09/powersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%bapowersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%baconnection-failederrcode10035_1301.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 05:04:46 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[PowerSock]]></category>

		<category><![CDATA[提示]]></category>

		<category><![CDATA[组件]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/powersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%bapowersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%baconnection-failederrcode10035_1301.html</guid>
		<description><![CDATA[我用Powersock组件写一个网络检测程式,但是在连接时提示:Connection failed(Error code:10035)  程序如下:  Powersock1-&#62;Host = Edit1-&#62;Text;  Powersock1-&#62;Port = StrToInt(Edit2-&#62;Text);  Powersock1-&#62;Timeout = StrToInt(Edit3-&#62;Text);  Powersock1-&#62;Resol&#8230;&#8230;(忘了怎么写了) = &#8230;Basic;  Posersock1-&#62;Connect()&#160; //执行到这句时提示连接fail(触发了OnConnectFail事件) 
 确定IP和端口都是正确的，也可以ping通，ip设：127.0.0.1也是一样
书上介绍的.它不是一个Ping的功能吗?怎么还需要服务器端.
即使是Ping功能，但Ping也是建立1次连接的过程 
 连接是需要双方的参数，1方怎么连呢？、、、、

]]></description>
			<content:encoded><![CDATA[<p>我用Powersock组件写一个网络检测程式,但是在连接时提示:Connection failed(Error code:10035) <br /> 程序如下: <br /> Powersock1-&gt;Host = Edit1-&gt;Text; <br /> Powersock1-&gt;Port = StrToInt(Edit2-&gt;Text); <br /> Powersock1-&gt;Timeout = StrToInt(Edit3-&gt;Text); <br /> Powersock1-&gt;Resol&#8230;&#8230;(忘了怎么写了) = &#8230;Basic; <br /> Posersock1-&gt;Connect()&nbsp; //执行到这句时提示连接fail(触发了OnConnectFail事件) </p>
<p> 确定IP和端口都是正确的，也可以ping通，ip设：127.0.0.1也是一样</p>
<p>书上介绍的.它不是一个Ping的功能吗?怎么还需要服务器端.</td>
<p>即使是Ping功能，但Ping也是建立1次连接的过程 </p>
<p> 连接是需要双方的参数，1方怎么连呢？、、、、</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/powersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%bapowersock%e7%bb%84%e4%bb%b6%e6%8f%90%e7%a4%baconnection-failederrcode10035_1301.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[执行][程序][图片]如何实现在执行程序中拖动图片的大小,我使用Image 组件,其他组件也可以.希望高手出招!</title>
		<link>http://www.smartcard24.info/2008/09/%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e5%9b%be%e7%89%87%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%9c%a8%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e4%b8%ad%e6%8b%96%e5%8a%a8%e5%9b%be%e7%89%87%e7%9a%84_1300.html</link>
		<comments>http://www.smartcard24.info/2008/09/%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e5%9b%be%e7%89%87%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%9c%a8%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e4%b8%ad%e6%8b%96%e5%8a%a8%e5%9b%be%e7%89%87%e7%9a%84_1300.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 04:05:06 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[图片]]></category>

		<category><![CDATA[执行]]></category>

		<category><![CDATA[程序]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e5%9b%be%e7%89%87%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%9c%a8%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e4%b8%ad%e6%8b%96%e5%8a%a8%e5%9b%be%e7%89%87%e7%9a%84_1300.html</guid>
		<description><![CDATA[我想在我刚刚实现的数据库存储图片程序的基础上拖动图片的大小!
是在按下鼠标后出现拖动的标志,然后在图片的右下角拖动图片将其放大.实现对图片的放大或缩小.
http://topic.csdn.net/t/20030106/17/1332155.html
5 楼jishiping（JSP 季世平）回复于 2003-01-06 18:30:16 得分 100其实很简单，不需要写什么程序：&#160;    &#160; 1.&#160;  设定Image的属性DragKind=dkDock;&#160;  DragMode=dmAutomatic;&#160;  设定Form&#160;    &#160; 的属性DockSite=true。&#160;    &#160; 2.&#160;  在Image的事件OnEndDock里写一行代码就可以了：&#160;    &#160; void&#160;  __fastcall&#160;  TForm1::Image1EndDock(TObject&#160;  *Sender,&#160;  TObject&#160;  *Target,&#160;    &#160; &#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>我想在我刚刚实现的数据库存储图片程序的基础上拖动图片的大小!</p>
<p>是在按下鼠标后出现拖动的标志,然后在图片的右下角拖动图片将其放大.实现对图片的放大或缩小.</td>
<p>http://topic.csdn.net/t/20030106/17/1332155.html</td>
<p>5 楼jishiping（JSP 季世平）回复于 2003-01-06 18:30:16 得分 100其实很简单，不需要写什么程序：&nbsp;   <br /> &nbsp; 1.&nbsp;  设定Image的属性DragKind=dkDock;&nbsp;  DragMode=dmAutomatic;&nbsp;  设定Form&nbsp;   <br /> &nbsp; 的属性DockSite=true。&nbsp;   <br /> &nbsp; 2.&nbsp;  在Image的事件OnEndDock里写一行代码就可以了：&nbsp;   <br /> &nbsp; void&nbsp;  __fastcall&nbsp;  TForm1::Image1EndDock(TObject&nbsp;  *Sender,&nbsp;  TObject&nbsp;  *Target,&nbsp;   <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int&nbsp;  X,&nbsp;  int&nbsp;  Y)&nbsp;   <br /> &nbsp; {&nbsp;   <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Image1-&gt;HostDockSite&nbsp;  =&nbsp;  (TWinControl*)0xFFFFFFFF;&nbsp;   <br /> &nbsp; }  </td>
<p>不好意思 回答错了，这个是拖动位置的</td>
<p>简单写了一个： <br /> 
<dl class='code'>
<dt>C/C++ code</dt>
<dd>
<pre>
<div><!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><span style="color: #0000FF;">void</span><span style="color: #000000;"> __fastcall TForm1::Image1MouseMove(TObject </span><span style="color: #000000;">*</span><span style="color: #000000;">Sender, TShiftState Shift,
      </span><span style="color: #0000FF;">int</span><span style="color: #000000;"> X, </span><span style="color: #0000FF;">int</span><span style="color: #000000;"> Y)
{
        </span><span style="color: #0000FF;">if</span><span style="color: #000000;">(X</span><span style="color: #000000;">&gt;</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Width</span><span style="color: #000000;">-</span><span style="color: #800080;">10</span><span style="color: #000000;"> </span><span style="color: #000000;">&amp;&amp;</span><span style="color: #000000;"> Y</span><span style="color: #000000;">&gt;</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Height</span><span style="color: #000000;">-</span><span style="color: #800080;">10</span><span style="color: #000000;">)
        {
                Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Cursor</span><span style="color: #000000;">=</span><span style="color: #000000;">crSizeNWSE;
                </span><span style="color: #0000FF;">if</span><span style="color: #000000;">(Shift.Contains(ssLeft))
                {
                        Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Width</span><span style="color: #000000;">=</span><span style="color: #000000;">X;
                        Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Height</span><span style="color: #000000;">=</span><span style="color: #000000;">Y;
                }
        }
        </span><span style="color: #0000FF;">else</span><span style="color: #000000;">
                Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Cursor</span><span style="color: #000000;">=</span><span style="color: #000000;">crDefault;
}
</span><span style="color: #008000;">//</span><span style="color: #008000;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</span><span style="color: #008000;">
</span></div>
</pre>
</dd>
</dl>
</td>
<p>if(Shift.Contains(ssLeft)) <br /> 这一句是什么意思？ <br />  1.&nbsp;  设定Image的属性DragKind=dkDock;&nbsp;  DragMode=dmAutomatic;&nbsp;  设定Form&nbsp; &nbsp;  <br /> &nbsp; 的属性DockSite=true。  <br /> 这个方法我尝试过了，但是不我想要的效果，这个相当于又出来了一个FORM。 <br /> 感谢你们的回答。 </p>
<p> 我想补充下当鼠标移动到图片的角落的时候出现可以拖动的标识，例如Image1-&gt;Cursor=crSizeA然后可以拖动他。 <br /> 当鼠标按下不放时可以把他移动。这部分功能我基本实现了，但是我不知道如何响应的鼠标压下台起等动作， <br /> 还有将图片扩大或缩小的程序原理不是很清楚， <br /> 我说的可能比较罗嗦，真诚求教。 </p>
<p> 如果能用滚轮滚动得到放大和缩小也可以。 </p>
<p> </td>
<p>我油箱是liu3039345@126.com <br /> 希望能有源码。</td>
<p>//使用窗体的滑轮滚动事件，判断鼠标位置，如果在图片上滚动时就放大缩小图片 <br /> 
<dl class='code'>
<dt>C/C++ code</dt>
<dd>
<pre>
<div><!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><span style="color: #0000FF;">void</span><span style="color: #000000;"> __fastcall TForm1::FormMouseWheel(TObject </span><span style="color: #000000;">*</span><span style="color: #000000;">Sender, TShiftState Shift,
      </span><span style="color: #0000FF;">int</span><span style="color: #000000;"> WheelDelta, TPoint </span><span style="color: #000000;">&amp;</span><span style="color: #000000;">MousePos, </span><span style="color: #0000FF;">bool</span><span style="color: #000000;"> </span><span style="color: #000000;">&amp;</span><span style="color: #000000;">Handled)
{
        POINT P;
        GetCursorPos(</span><span style="color: #000000;">&amp;</span><span style="color: #000000;">P);
        ::ScreenToClient(Handle,</span><span style="color: #000000;">&amp;</span><span style="color: #000000;">P);
        </span><span style="color: #0000FF;">if</span><span style="color: #000000;">(P.x </span><span style="color: #000000;">&gt;</span><span style="color: #000000;"> Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Left
           </span><span style="color: #000000;">&amp;&amp;</span><span style="color: #000000;"> P.x </span><span style="color: #000000;">&lt;</span><span style="color: #000000;"> Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Left</span><span style="color: #000000;">+</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Width
           </span><span style="color: #000000;">&amp;&amp;</span><span style="color: #000000;"> P.y </span><span style="color: #000000;">&gt;</span><span style="color: #000000;"> Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Top
           </span><span style="color: #000000;">&amp;&amp;</span><span style="color: #000000;"> P.y </span><span style="color: #000000;">&lt;</span><span style="color: #000000;"> Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Top</span><span style="color: #000000;">+</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Height)
        {
                </span><span style="color: #0000FF;">if</span><span style="color: #000000;">(WheelDelta</span><span style="color: #000000;">&lt;</span><span style="color: #800080;">0</span><span style="color: #000000;">)
                {</span><span style="color: #008000;">//</span><span style="color: #008000;">下滚放大</span><span style="color: #008000;">
</span><span style="color: #000000;">                        Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Width</span><span style="color: #000000;">=</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Width</span><span style="color: #000000;">+</span><span style="color: #800080;">1</span><span style="color: #000000;">;
                        Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Height</span><span style="color: #000000;">=</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Height</span><span style="color: #000000;">+</span><span style="color: #800080;">1</span><span style="color: #000000;">;
                }
                </span><span style="color: #0000FF;">else</span><span style="color: #000000;">
                {</span><span style="color: #008000;">//</span><span style="color: #008000;">上滚缩小</span><span style="color: #008000;">
</span><span style="color: #000000;">                        Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Width</span><span style="color: #000000;">=</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Width</span><span style="color: #000000;">-</span><span style="color: #800080;">1</span><span style="color: #000000;">;
                        Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Height</span><span style="color: #000000;">=</span><span style="color: #000000;">Image1</span><span style="color: #000000;">-&gt;</span><span style="color: #000000;">Height</span><span style="color: #000000;">-</span><span style="color: #800080;">1</span><span style="color: #000000;">;
                }
        }
}
</span><span style="color: #008000;">//</span><span style="color: #008000;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</span><span style="color: #008000;">
</span></div>
</pre>
</dd>
</dl>
</td>
<p>谈谈数字图像的缩放算法 <br /> <a href="http://rockcarry.home.sunbo.net/show_hdr.php?xname=AHAETV0&#038;dname=IGB7831&#038;xpos=2" target="_blank" >http://rockcarry.home.sunbo.net/show_hdr.php?xname=AHAETV0&#038;dname=IGB7831&#038;xpos=2</a></td>
<p>up</td>
<p>谢谢,我会尝试,继续求教.</td>
<p>放到paintbox里好点吧。</td>
<p>友情Up!</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e5%9b%be%e7%89%87%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%9c%a8%e6%89%a7%e8%a1%8c%e7%a8%8b%e5%ba%8f%e4%b8%ad%e6%8b%96%e5%8a%a8%e5%9b%be%e7%89%87%e7%9a%84_1300.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[实现][数据库同时][数据]关于CB如何实现向两个数据库同时写数据。用线程处理吗？求指点，最好有代码！</title>
		<link>http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e5%90%8c%e6%97%b6%e6%95%b0%e6%8d%ae%e5%85%b3%e4%ba%8ecb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%90%91%e4%b8%a4%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93_1299.html</link>
		<comments>http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e5%90%8c%e6%97%b6%e6%95%b0%e6%8d%ae%e5%85%b3%e4%ba%8ecb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%90%91%e4%b8%a4%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93_1299.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 04:04:52 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[实现]]></category>

		<category><![CDATA[数据]]></category>

		<category><![CDATA[数据库同时]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e5%90%8c%e6%97%b6%e6%95%b0%e6%8d%ae%e5%85%b3%e4%ba%8ecb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%90%91%e4%b8%a4%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93_1299.html</guid>
		<description><![CDATA[请问用 CB实现对数据库实现同时向两个 数据库写数据，不是 两张表，是两 个 数据库名  例如：its  &#160; &#160;  itses  我用oracle数据库比较多。希望能给点指引，有代码更好，  我不知道该向什么方向出发，是数据库的问题吗？用触发器还是BC代码线程处理。  本人刚学编程，对面向对象的过程和写程序的结构不是很清除。希望指点。
用2个ADOConnection连接2个数据库，分别操作，不就得了

]]></description>
			<content:encoded><![CDATA[<p>请问用 CB实现对数据库实现同时向两个 数据库写数据，不是 两张表，是两 个 数据库名 <br /> 例如：its <br /> &nbsp; &nbsp;  itses <br /> 我用oracle数据库比较多。希望能给点指引，有代码更好， <br /> 我不知道该向什么方向出发，是数据库的问题吗？用触发器还是BC代码线程处理。 <br /> 本人刚学编程，对面向对象的过程和写程序的结构不是很清除。希望指点。</p>
<p>用2个ADOConnection连接2个数据库，分别操作，不就得了</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e5%90%8c%e6%97%b6%e6%95%b0%e6%8d%ae%e5%85%b3%e4%ba%8ecb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%90%91%e4%b8%a4%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93_1299.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[实现][数据库][程序]CB如何实现对2个数据库写程序。线程能处理吗？求指教。</title>
		<link>http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e7%a8%8b%e5%ba%8fcb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%af%b92%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93%e5%86%99%e7%a8%8b%e5%ba%8f%e3%80%82%e7%ba%bf_1298.html</link>
		<comments>http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e7%a8%8b%e5%ba%8fcb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%af%b92%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93%e5%86%99%e7%a8%8b%e5%ba%8f%e3%80%82%e7%ba%bf_1298.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 04:04:46 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[实现]]></category>

		<category><![CDATA[数据库]]></category>

		<category><![CDATA[程序]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e7%a8%8b%e5%ba%8fcb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%af%b92%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93%e5%86%99%e7%a8%8b%e5%ba%8f%e3%80%82%e7%ba%bf_1298.html</guid>
		<description><![CDATA[请问用 CB实现对数据库实现同时向两个 数据库写数据，不是 两张表，是两 个 数据库名   例如：its   &#160; &#160; itses   我用oracle数据库比较多。希望能给点指引，有代码更好，   我不知道该向什么方向出发，是数据库的问题吗？用触发器还是BC代码线程处理。   本人刚学编程，对面向对象的过程和写程序的结构不是很清除。希望指点。
该回复于2008-07-21 09:10:08被版主删除
用两个SQL语句就可以了  insert into its.表名 values()   insert into itses.表名 values()&#160;   
可以用两个线程分别对不同的数据库操作
两个SQL语句
需要放两个连接组件，如果是一个的话需要写完一个，切换数据库连接再写另一个。  

]]></description>
			<content:encoded><![CDATA[<p>请问用 CB实现对数据库实现同时向两个 数据库写数据，不是 两张表，是两 个 数据库名  <br /> 例如：its  <br /> &nbsp; &nbsp; itses  <br /> 我用oracle数据库比较多。希望能给点指引，有代码更好，  <br /> 我不知道该向什么方向出发，是数据库的问题吗？用触发器还是BC代码线程处理。  <br /> 本人刚学编程，对面向对象的过程和写程序的结构不是很清除。希望指点。</p>
<p><span class='adminOpera'>该回复于2008-07-21 09:10:08被版主删除</span></td>
<p>用两个SQL语句就可以了 <br /> insert into its.表名 values()  <br /> insert into itses.表名 values()&nbsp;   </td>
<p>可以用两个线程分别对不同的数据库操作</td>
<p>两个SQL语句</td>
<p>需要放两个连接组件，如果是一个的话需要写完一个，切换数据库连接再写另一个。  </td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/%e5%ae%9e%e7%8e%b0%e6%95%b0%e6%8d%ae%e5%ba%93%e7%a8%8b%e5%ba%8fcb%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e5%af%b92%e4%b8%aa%e6%95%b0%e6%8d%ae%e5%ba%93%e5%86%99%e7%a8%8b%e5%ba%8f%e3%80%82%e7%ba%bf_1298.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[spcomm][安装][为何]spcomm安装时为何有一警告提示？有无在BCB6下的简单收发例子？</title>
		<link>http://www.smartcard24.info/2008/09/spcomm%e5%ae%89%e8%a3%85%e4%b8%ba%e4%bd%95spcomm%e5%ae%89%e8%a3%85%e6%97%b6%e4%b8%ba%e4%bd%95%e6%9c%89%e4%b8%80%e8%ad%a6%e5%91%8a%e6%8f%90%e7%a4%ba%ef%bc%9f%e6%9c%89%e6%97%a0%e5%9c%a8bcb6_1297.html</link>
		<comments>http://www.smartcard24.info/2008/09/spcomm%e5%ae%89%e8%a3%85%e4%b8%ba%e4%bd%95spcomm%e5%ae%89%e8%a3%85%e6%97%b6%e4%b8%ba%e4%bd%95%e6%9c%89%e4%b8%80%e8%ad%a6%e5%91%8a%e6%8f%90%e7%a4%ba%ef%bc%9f%e6%9c%89%e6%97%a0%e5%9c%a8bcb6_1297.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 02:05:33 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[spcomm]]></category>

		<category><![CDATA[为何]]></category>

		<category><![CDATA[安装]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/spcomm%e5%ae%89%e8%a3%85%e4%b8%ba%e4%bd%95spcomm%e5%ae%89%e8%a3%85%e6%97%b6%e4%b8%ba%e4%bd%95%e6%9c%89%e4%b8%80%e8%ad%a6%e5%91%8a%e6%8f%90%e7%a4%ba%ef%bc%9f%e6%9c%89%e6%97%a0%e5%9c%a8bcb6_1297.html</guid>
		<description><![CDATA[SPCOMM.pas在BCB6下安装编译时出现：  [Pascal Hint]SPCOMM.PAS(207):Private Symbol &#39;SetParity&#39; declared but never used 
 有没有简单的收发例子。
为何总是用各种控件呢？摩莎的Pcomm非常好用，不用安装，直接考到工程目录下就可以用，也有非常简单易读的帮助，还有范例程序。我用了好几年了，打遍所有问题。
学习
这个问题我以前也接触过，开始的时候我也找不到问题的原因，后来我进了一个技术交流群，这个群里的人挺多的，在里面可以沟通技术，你可以进去看一下.群号是：五+九+零+四+九+二+六+八。另外，这个群里可以接项目。

]]></description>
			<content:encoded><![CDATA[<p>SPCOMM.pas在BCB6下安装编译时出现： <br /> [Pascal Hint]SPCOMM.PAS(207):Private Symbol &#39;SetParity&#39; declared but never used </p>
<p> 有没有简单的收发例子。</p>
<p>为何总是用各种控件呢？摩莎的Pcomm非常好用，不用安装，直接考到工程目录下就可以用，也有非常简单易读的帮助，还有范例程序。我用了好几年了，打遍所有问题。</td>
<p>学习</td>
<p>这个问题我以前也接触过，开始的时候我也找不到问题的原因，后来我进了一个技术交流群，这个群里的人挺多的，在里面可以沟通技术，你可以进去看一下.群号是：五+九+零+四+九+二+六+八。另外，这个群里可以接项目。</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/spcomm%e5%ae%89%e8%a3%85%e4%b8%ba%e4%bd%95spcomm%e5%ae%89%e8%a3%85%e6%97%b6%e4%b8%ba%e4%bd%95%e6%9c%89%e4%b8%80%e8%ad%a6%e5%91%8a%e6%8f%90%e7%a4%ba%ef%bc%9f%e6%9c%89%e6%97%a0%e5%9c%a8bcb6_1297.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>[StringGrid1][显示][单元]StringGrid1显示单元格如何控制显示的内容在中央？（包括上下中央，左右中央)</title>
		<link>http://www.smartcard24.info/2008/09/stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83%e6%a0%bc%e5%a6%82%e4%bd%95%e6%8e%a7%e5%88%b6%e6%98%be%e7%a4%ba%e7%9a%84%e5%86%85%e5%ae%b9%e5%9c%a8_1296.html</link>
		<comments>http://www.smartcard24.info/2008/09/stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83%e6%a0%bc%e5%a6%82%e4%bd%95%e6%8e%a7%e5%88%b6%e6%98%be%e7%a4%ba%e7%9a%84%e5%86%85%e5%ae%b9%e5%9c%a8_1296.html#comments</comments>
		<pubDate>Sun, 07 Sep 2008 02:05:27 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[C++ Builder]]></category>

		<category><![CDATA[StringGrid1]]></category>

		<category><![CDATA[单元]]></category>

		<category><![CDATA[显示]]></category>

		<guid isPermaLink="false">http://www.smartcard24.info/2008/09/stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83%e6%a0%bc%e5%a6%82%e4%bd%95%e6%8e%a7%e5%88%b6%e6%98%be%e7%a4%ba%e7%9a%84%e5%86%85%e5%ae%b9%e5%9c%a8_1296.html</guid>
		<description><![CDATA[StringGrid1显示单元格如何控制显示的内容在中央？（包括上下中央，左右中央)
不过这样标题栏颜色也没了，可以改回DefaultDrawing = true; 
 再在上面代码前加一句: StringGrid1-&#62;Canvas-&#62;FillRect(Rect); //填充单元格画布
void __fastcall TForm1::BitBtn1Click(TObject *Sender)  {  &#160; &#160; &#160;  StringGrid1-&#62;Cells[1][1]=&#34;中华人民&#34;;  }  //&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;  void __fastcall TForm1::StringGrid1DrawCell(TObject *Sender, int ACol,  &#160; &#160; &#160; int ARow, TRect &#38;Rect, TGridDrawState State)  {  &#160; &#160; &#160; if (ARow==1 &#38;&#38; ACol==1)  &#160; &#160; &#160; &#160;  [...]]]></description>
			<content:encoded><![CDATA[<p>StringGrid1显示单元格如何控制显示的内容在中央？（包括上下中央，左右中央)</p>
<p>不过这样标题栏颜色也没了，可以改回DefaultDrawing = true; </p>
<p> 再在上面代码前加一句: StringGrid1-&gt;Canvas-&gt;FillRect(Rect); //填充单元格画布</td>
<p>void __fastcall TForm1::BitBtn1Click(TObject *Sender) <br /> { <br /> &nbsp; &nbsp; &nbsp;  StringGrid1-&gt;Cells[1][1]=&quot;中华人民&quot;; <br /> } <br /> //&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; <br /> void __fastcall TForm1::StringGrid1DrawCell(TObject *Sender, int ACol, <br /> &nbsp; &nbsp; &nbsp; int ARow, TRect &amp;Rect, TGridDrawState State) <br /> { <br /> &nbsp; &nbsp; &nbsp; if (ARow==1 &amp;&amp; ACol==1) <br /> &nbsp; &nbsp; &nbsp; &nbsp;  { <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; StringGrid1-&gt;Canvas-&gt;Brush-&gt;Color=clRed; <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; StringGrid1-&gt;Canvas-&gt;FillRect(Rect); <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; StringGrid1-&gt;Canvas-&gt;Font-&gt;Color=clWhite; <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String s=StringGrid1-&gt;Cells[ARow][ACol]; <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int txtwidth =StringGrid1-&gt;Canvas-&gt;TextWidth(s); //文本宽度 <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int txtheight=StringGrid1-&gt;Canvas-&gt;TextHeight(s); <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; StringGrid1-&gt;Canvas-&gt;TextOut( <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Rect.Left+(Rect.Width()-txtwidth)/2, <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  Rect.Top+(Rect.Height()-txtheight)/2, <br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  StringGrid1-&gt;Cells[1][1]); <br /> &nbsp; &nbsp; &nbsp; &nbsp;  } <br /> } <br /> 多谢！</td>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smartcard24.info/2008/09/stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83stringgrid1%e6%98%be%e7%a4%ba%e5%8d%95%e5%85%83%e6%a0%bc%e5%a6%82%e4%bd%95%e6%8e%a7%e5%88%b6%e6%98%be%e7%a4%ba%e7%9a%84%e5%86%85%e5%ae%b9%e5%9c%a8_1296.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
