<?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/powerlly" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/powerlly" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 18 Jun 2009 17:51:00 GMT</lastBuildDate><title>power的专栏</title><description>以责人之心责己，以恕己之心恕人。</description><link>http://blog.csdn.net/powerlly/</link><item><title>WTL for MFC Programmers 学习笔记（四） Part IV Dialogs and Controls</title><link>http://blog.csdn.net/powerlly/archive/2009/06/18/4280630.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/4280630.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/4280630.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4280630</trackback:ping><description>Part IV Dialogs and ControlsRefresher on ATL Dialogs       ATL中有两种对话框实现：CDialogImple和CAxDialogImpl，后者在窗口作为ActiveX控件宿主的时候使用。通过三步创建新的对话框类：1.       创建对话框资源；2.       从CDialogImpl继承新对话框子类；3.       在新类中添加公有变量IDD，并将对话框资源ID赋值给它。然后就可以和Frame一样添加消息处理了。 Control Wrapper Classes       WTL中类名、方法名基本和MFC中的相似，所以可以参考MFC的文档来使用WTL，也可以通过F12参看源码来了解，如果喜欢的话。       一下列出内置的控件：1.       用户控件：CStatic, CButton, CListBox, CComboBox, CEdit, CSrollBar, CDragListBox2.   &lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/4280630.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236642683/powerlly/csdn.net/s.gif?r=http://blog.csdn.net/powerlly/archive/2009/06/18/4280630.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/powerlly/236642683/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/powerlly/236642683/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 19 Jun 2009 01:51:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2009/06/18/4280630.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2009/06/18/4280630.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2009/06/18/4280630.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642683/1115449</fs:itemid></item><item><title>WTL for MFC Programmers 学习笔记（三） Part III Toolbars and Status Bars</title><link>http://blog.csdn.net/powerlly/archive/2009/06/18/4280595.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/4280595.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/4280595.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4280595</trackback:ping><description>Toolbars and Status Bars in a Frame&lt;br /&gt;       CFrameWindowImpl有个三个HWND对象成员：&lt;br /&gt;1.       m_hWndClient 子窗体HWND&lt;br /&gt;2.       m_hWndToolBar 工具栏或rebar HWND&lt;br /&gt;3.       m_hWndStatusBar 状态栏HWND&lt;br /&gt;CFrameWindowImpl只支持一个工具栏。如果需要使用多个工具栏的话需要用rebar。&lt;br /&gt;CFrameWindowImpl：：OnSize()中调用UpdateLayout()时做了两件事：设置bar的位置、调整视图窗口大小以符合当前客户区域。&lt;br /&gt; AppWizard Code for Toolbars and Stauts Bars&lt;br /&gt;       创建SDI工程的时候选择特征： Toolbar、Status Bar，这样主窗体上就加上了这两个bar。&lt;br /&gt; How CMainWindow creates the bars&lt;br /&gt;       LRES&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/4280595.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236642684/powerlly/csdn.net/s.gif?r=http://blog.csdn.net/powerlly/archive/2009/06/18/4280595.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/powerlly/236642684/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/powerlly/236642684/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 19 Jun 2009 01:37:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2009/06/18/4280595.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2009/06/18/4280595.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2009/06/18/4280595.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642684/1115449</fs:itemid></item><item><title>Windows线程函数概述 - 《C++编程艺术》</title><link>http://blog.csdn.net/powerlly/archive/2009/05/15/4189010.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/4189010.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/4189010.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4189010</trackback:ping><description>&lt;br /&gt;        Windows提供了多组支持多线程的应用程序接口(API)函数。许多读者已经对Windows提供的多线程函数有一定程度的了解，但是对于那些不熟悉这些的读者，本章提供了这些函数的概述。记住，Windows提供了许多其他的基于多线程的函数，这些函数需要您自己去探索。&lt;br /&gt;为了使用Windows的多线程函数，必须在程序中包含。1 线程的创建和终止&lt;br /&gt;      Windows API提供了CreateThread()函数来创建一个线程。其原型如下所示：&lt;br /&gt;HANDLE CreateThread(LPSECURITY_ATTRIBUTES secAttr,
    SIZE_T stackSize,
    LPTHREAD_START_ROUTINE threadFunc,
    LPVOID param,
    DWORD flags,
    LPDWORD threadID
);&lt;br /&gt;      在此，secAttr是一个用来描述线程的安全属性的指针。如果secAttr是NULL，就会使用默认&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/4189010.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236642685/powerlly/csdn.net/s.gif?r=http://blog.csdn.net/powerlly/archive/2009/05/15/4189010.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/powerlly/236642685/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/powerlly/236642685/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 15 May 2009 22:54:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2009/05/15/4189010.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2009/05/15/4189010.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2009/05/15/4189010.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642685/1115449</fs:itemid></item><item><title>WTL for MFC Programmers 学习笔记（二） Part II  WTL GUI Base Classes</title><link>http://blog.csdn.net/powerlly/archive/2009/04/28/4133563.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/4133563.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/4133563.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4133563</trackback:ping><description>Party II WTL GUI Base ClassesWTL Overview       WTL类主要分成一下5类：1.       Frame窗口实现： CFrameWindowImpl, CMDIFrameWindowImple2.       空间封装：CButton, CListViewCtrl3.       GDI封装：CDC, CMenu4.       特殊UI特征：CSplitterWindow, CUpdateUI, CDialogResize, CCustomDraw5.       工具类和宏：CString ， CRect， BEGIN_MSG_MAP_EX其中多数是独立类，但也包括嵌入类如： CDialogResize。 Beginning a WTL EXE// stdafx.h#define STRICT#define WIN32_LEAN_AND_MEAN#define _WTL_USE_CSTRING&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/4133563.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/powerlly/236642686/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/powerlly/236642686/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 29 Apr 2009 01:25:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2009/04/28/4133563.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2009/04/28/4133563.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2009/04/28/4133563.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642686/1115449</fs:itemid></item><item><title>WTL for MFC Programmers 学习笔记（一） Party I ATL GUI Classes</title><link>http://blog.csdn.net/powerlly/archive/2009/04/25/4116948.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/4116948.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/4116948.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4116948</trackback:ping><description>Party I ATL GUI ClassesATL-style templatesclass CMyWnd : public CWindowImpl{...};       CMyWnd在class CMyWnd语句后即被定义，可以在其后的继承关系列表中使用。子类名（当前声明类）在继承列表中出现的用意在于，实现“编译时虚函数调用”。template class B1{public:     void SayHi() {       // 将自身转换成子类            T* pT = static_cast(this);   // HUH?? I'll explain this below        pT-&gt;PrintClassName();    }    void PrintClassName() { cout&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/4116948.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/powerlly/236642687/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/powerlly/236642687/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 25 Apr 2009 08:22:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2009/04/25/4116948.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2009/04/25/4116948.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2009/04/25/4116948.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642687/1115449</fs:itemid></item><item><title>从MFC与ATL的男女关系说起</title><link>http://blog.csdn.net/powerlly/archive/2009/02/25/3935157.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/3935157.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/3935157.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3935157</trackback:ping><description>特殊角度，风趣调侃MFC与ATL的男女关系&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/3935157.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/powerlly/236642688/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/powerlly/236642688/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 25 Feb 2009 19:28:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2009/02/25/3935157.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2009/02/25/3935157.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2009/02/25/3935157.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642688/1115449</fs:itemid></item><item><title>word2003经常提示语音识别的数据丢失解决办法</title><link>http://blog.csdn.net/powerlly/archive/2008/12/23/3588065.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/3588065.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/3588065.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3588065</trackback:ping><description>  最近使用word2003，在自动保存或编辑完文档要保存时，总是弹出窗口显示： 
&lt;br /&gt;“文档被保存，但是语音识别的数据丢失，因为没有足够的空间存储这些数据。确保没有录音时关闭麦克风，并检查磁盘上的存储空间。”&lt;br /&gt;确认麦克风已经关闭，但仍然显示，搜了下解决办法，记录下。&lt;br /&gt;&lt;br /&gt;原因是word2003具有语音识别功能，解决方法：&lt;br /&gt;1.在“工具”菜单上，单击“选项”。&lt;br /&gt;2.在“选项”窗体中，单击“保存”页。&lt;br /&gt;3.在“保存”页中，单击“嵌入语言数据”复选项，使“嵌入语言数据”复选项，不被选中。&lt;br /&gt;4.在“选项”窗体中，单击“确定”按钮保存。&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/3588065.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/powerlly/236642689/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/powerlly/236642689/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Dec 2008 18:39:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2008/12/23/3588065.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2008/12/23/3588065.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2008/12/23/3588065.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642689/1115449</fs:itemid></item><item><title>Telelogic DOORS常用操作</title><link>http://blog.csdn.net/powerlly/archive/2008/11/29/3410414.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/3410414.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/3410414.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3410414</trackback:ping><description>一款需求、开发、测试文档跟踪管理工具，总结常用操作，帮助快速上手。&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/3410414.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/powerlly/236642690/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/powerlly/236642690/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 30 Nov 2008 00:42:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2008/11/29/3410414.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2008/11/29/3410414.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2008/11/29/3410414.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642690/1115449</fs:itemid></item><item><title>批处理命令-修改注册表</title><link>http://blog.csdn.net/powerlly/archive/2008/11/25/3368896.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/3368896.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/3368896.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3368896</trackback:ping><description>        最近用了一个叫Telelogci Doors的需求管理软件，有点像VSS只是提供了管理需求过程文档，帮助版本管理、需求跟踪、变更分析，等等功能。        但是遇到个问题，有服务端、客户端，但是连接服务器的配置在客户端安装的时候就已经确定了，没有修改连接功能、没有相关配置文件。靠，不会要换个服务器就安装一份吧，估计还用不了，囧~~~        今天灵感来了，估计会配置在注册表中，寻之、获之，GOOD!        那不就行了，修改注册表就行了。rem 修改Telelogic Client连接服务器rem Usage:rem SwitchServer @@echo offclsif &quot;%1&quot;==&quot;&quot; goto _dbEmptyset DataBase=%1goto _modifyReg:_dbEmptyecho.echo 修改Telelogic Client连接服务器echo Usage:echo SwitchServer ^@^echo.rem 输入数据&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/3368896.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/powerlly/236642691/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/powerlly/236642691/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 25 Nov 2008 21:17:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2008/11/25/3368896.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2008/11/25/3368896.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2008/11/25/3368896.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642691/1115449</fs:itemid></item><item><title>批处理for中如何实现break</title><link>http://blog.csdn.net/powerlly/archive/2008/10/30/3184068.aspx</link><wfw:comment>http://blog.csdn.net/powerlly/comments/3184068.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/powerlly/comments/commentRss/3184068.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3184068</trackback:ping><description>&lt;br /&gt;2008年10月30日 星期四 10时08分&lt;br /&gt;        当然批处理程序中没有break关键字，那又如何实现呢？先看看例子：@echo offset AreaPortFile=Ports_Aset AnchorOnLandPortFile=OL%AreaPortFile%_Anchorset MergeOnLandPortFile=MG%AreaPortFile%if exist %MergeOnLandPortFile% del %MergeOnLandPortFile%rem set find=0  // 方案二 for /F &quot;eol=; tokens=1,2,3,4 delims=|&quot; %%a in (%AreaPortFile%) do (  if &quot;%%d&quot;==&quot;?&quot; (    rem set find = 0    rem for /F &quot;eol=; tokens=1,2 delims=|&quot; %%i in (%AnchorOnLandPortFile%) do (    rem   if &quot;%%i&quot;==&quot;A%%a&quot; (    rem     ec&lt;img src =&quot;http://blog.csdn.net/powerlly/aggbug/3184068.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/powerlly/236642692/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/powerlly/236642692/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 30 Oct 2008 21:29:00 +0800</pubDate><author>power</author><comments>http://blog.csdn.net/powerlly/archive/2008/10/30/3184068.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/powerlly/archive/2008/10/30/3184068.aspx</guid><dc:creator>power</dc:creator><fs:srclink>http://blog.csdn.net/powerlly/archive/2008/10/30/3184068.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/powerlly/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/powerlly/~1115453/236642692/1115449</fs:itemid></item></channel></rss>