<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/alexzhang00" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/alexzhang00" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 17 Jun 2009 08:47:00 GMT</lastBuildDate><title>缘分，就是给爱你的人机会</title><description>感恩生活，享受生活 --- 三角猫</description><link>http://blog.csdn.net/alexzhang00/</link><item><title>为IE浏览器的右键菜单增加“复制链接地址”和“复制图片地址”的功能</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/17/4275211.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4275211.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4275211.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4275211</trackback:ping><description>在 Firefox 浏览器中，右键菜单中，有2个非常棒的功能，就是 “复制链接地址” 和 “复制图片地址”，在我们需要引用图片或者链接的时候，就非常方便了；遗憾的是IE中并没有这2个功能，下面我们自己来给IE增加这个2个功能。   下面是 Firefox 中的右键菜单：          下面我自己为IE添加的具有同样功能的右键菜单：         IE自定义右键菜单相关知识     IE自定义右键菜单的位置，在注册表中的     HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\     下面的子键。     如果需要自定义右键菜单，就可以在这里添加自己的子键  自定义菜单添加后，注册表里的效果     上面的内容中，有个 contexts 值，这个是决定右键菜单触发的对象的，具体的说明：     对于“复制图片地址”，我们需要的是图片，所以 contexts = 2  对于 “复制链接地址”，我们需要的是链接，所以 contexts = 32       如果你也需要这个功能，可以下载我做好的注册表文件，&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4275211.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612588/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/17/4275211.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612588/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612588/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 17 Jun 2009 16:47:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/17/4275211.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/17/4275211.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/17/4275211.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612588/1110160</fs:itemid></item><item><title>计算2个日期之间的整月数的算法</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/16/4272799.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4272799.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4272799.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4272799</trackback:ping><description>今天，有个网友提问：     c# 算出整月 问题补充：我是说两个日期之间间隔额整月，比如2008-11-5 和 2009-4-3之间的整月 ，我要的结果是要算出这里的整月是12，1，2，3这四个月，怎么算可以得到是四个整月呢算法的代码很简单，主要是思路问题。  DateTime dt1 = 日期1;DateTime dt2 = 日期2;int 整月数 = (dt2.Year - dt1.Year) * 12 + (dt2.Month - 1) - dt1.Month; &lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4272799.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612589/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/16/4272799.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612589/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612589/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 16 Jun 2009 19:47:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/16/4272799.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/16/4272799.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/16/4272799.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612589/1110160</fs:itemid></item><item><title>C# TreeView 父节点选中/不选时子节点都同步选中/不选</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/13/4266154.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4266154.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4266154.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4266154</trackback:ping><description>C# TreeView 父节点选中/不选时子节点都同步选中/不选&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4266154.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612592/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/13/4266154.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612592/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612592/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 13 Jun 2009 21:38:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/13/4266154.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/13/4266154.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/13/4266154.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612592/1110160</fs:itemid></item><item><title>C#多线程delegate委托方式读取多文件到同一个文本框显示</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/13/4265886.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4265886.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4265886.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4265886</trackback:ping><description>C#多线程delegate委托方式读取多文件到同一个文本框显示&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4265886.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612593/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/13/4265886.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612593/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612593/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 13 Jun 2009 19:23:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/13/4265886.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/13/4265886.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/13/4265886.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612593/1110160</fs:itemid></item><item><title>SmtpClient 身份验证失败(authentication failed) 的原因分析</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/06/4247935.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4247935.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4247935.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4247935</trackback:ping><description>最近，收到几位网友的咨询，都说使用 SmtpClient 通过 139,189,qq 邮箱的SMTP服务，发送邮件时，都不成功，返回的错误是 “身份验证失败”，而同样的情况，使用outlook express, foxmail 则可以正常发送。为了搞清原因，我自己测试了一把，问题确实如此。&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4247935.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612594/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/06/4247935.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612594/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612594/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 07 Jun 2009 03:30:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/06/4247935.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/06/4247935.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/06/4247935.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612594/1110160</fs:itemid></item><item><title>ASP的Server.UrlEncode和Asp.Net的Server.UrlEncode的返回结果不同</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/05/4244234.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4244234.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4244234.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4244234</trackback:ping><description>ASP的Server.UrlEncode和Asp.Net的Server.UrlEncode的返回结果不同&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4244234.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612595/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/05/4244234.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612595/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612595/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Jun 2009 18:16:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/05/4244234.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/05/4244234.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/05/4244234.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612595/1110160</fs:itemid></item><item><title>C# DES 加密/解密类库，支持文件和中文/UNICODE字符，返回BASE64编码字符串</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243264.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4243264.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4243264.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4243264</trackback:ping><description>C# DES 加密/解密类库，支持文件和中文/UNICODE字符，返回BASE64编码字符串&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4243264.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612596/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243264.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612596/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612596/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Jun 2009 04:46:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243264.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243264.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243264.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612596/1110160</fs:itemid></item><item><title>VB.NET DES 加密/解密类库，支持文件和中文/UNICODE字符，返回BASE64编码字符串</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243257.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4243257.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4243257.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4243257</trackback:ping><description>VB.NET DES 加密/解密类库，支持文件和中文/UNICODE字符，返回BASE64编码字符串&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4243257.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612598/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243257.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612598/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612598/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Jun 2009 04:44:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243257.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243257.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243257.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612598/1110160</fs:itemid></item><item><title>VB6/VBSCRIPT控制Windows系统自带的防火墙/FireWall</title><link>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243253.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4243253.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4243253.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4243253</trackback:ping><description>VB6/VBSCRIPT控制Windows系统自带的防火墙/FireWall&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4243253.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612599/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243253.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612599/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612599/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Jun 2009 04:41:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243253.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243253.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/06/04/4243253.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612599/1110160</fs:itemid></item><item><title>隐藏控制台程序运行时的窗口(Windows API ShowWindow的应用)</title><link>http://blog.csdn.net/alexzhang00/archive/2009/05/27/4219177.aspx</link><wfw:comment>http://blog.csdn.net/alexzhang00/comments/4219177.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexzhang00/comments/commentRss/4219177.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4219177</trackback:ping><description>隐藏控制台程序运行时的窗口(Windows API ShowWindow的应用)&lt;img src =&quot;http://blog.csdn.net/alexzhang00/aggbug/4219177.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236612601/alexzhang00/csdn.net/s.gif?r=http://blog.csdn.net/alexzhang00/archive/2009/05/27/4219177.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/alexzhang00/236612601/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/alexzhang00/236612601/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 27 May 2009 16:48:00 +0800</pubDate><author>三角猫</author><comments>http://blog.csdn.net/alexzhang00/archive/2009/05/27/4219177.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexzhang00/archive/2009/05/27/4219177.aspx</guid><dc:creator>三角猫</dc:creator><fs:srclink>http://blog.csdn.net/alexzhang00/archive/2009/05/27/4219177.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/alexzhang00/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/alexzhang00/~1110162/236612601/1110160</fs:itemid></item></channel></rss>