<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_施昌权-博客</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/30820/rss</id><updated>2009-03-26T14:27:17Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/30820/rss"/><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098875.html</id><title type="text">WebBrowser控件说明</title><summary type="text">方法 说明 　GoBack 相当于IE的&amp;#8220;后退&amp;#8221;按钮，使你在当前历史列表中后退一项 　GoForward 相当于IE的&amp;#8220;前进&amp;#8221;按钮，使你在当前历史列表中前进一项 　GoHome 相当于IE的&amp;#8220;主页&amp;#8221;按钮，连接用户默认的主页 　GoSearch 相当于IE的&amp;#8220;搜索&amp;#8221;按钮，连接用户默认的搜索页面 　Navi...</summary><published>2008-03-10T07:33:00Z</published><updated>2008-03-10T07:33:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098875.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098875.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098521.html</id><title type="text">实验1  Windows汇编语言开发环境</title><summary type="text">Windows、Linux等现代操作系统都运行于CPU的保护模式下。学习保护模式的汇编语言编程，要选用合适的编译、调试工具，编译工具决定了汇编程序的语法、结构，而调试工具则能够帮助我们迅速查找程序中的错误，提高调试效率。本实验指导书采用Microsoft公司的MASM 6.14作为编译工具，Microsoft Visual C/C++作为开发调试环境。1.1汇编程序结构和其他语言一样，汇编语言的源...</summary><published>2008-03-10T04:40:00Z</published><updated>2008-03-10T04:40:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098521.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098521.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098484.html</id><title type="text">使用Visual C++调试器调试</title><summary type="text">一、调试版本与发布版本　　有时程序能在调试版本运行但不能运行于发布版本，反之也有可能。一般说来，一个发布版本意味着某些类型的优化，而一个调试版本则没有优化。下面我们来看看它们的区别：1、特别针对调试版本的编译选项（1）/MDd,/MLd或者/MTd 　　调试版本的运行时刻库有调试符号，使用了调试堆，调试堆的目的是发现内存破坏和内存泄漏，并且向用户报告源代码的哪个地方出了问题。特性：.调试版本的运行...</summary><published>2008-03-10T04:05:00Z</published><updated>2008-03-10T04:05:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098484.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098484.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098470.html</id><title type="text">在VC程序中使用调试语句</title><summary type="text">为了更好地对程序调试，可以使用如下方法：使用断言、使用跟踪语句、使用异常和返回值。一、断言1、基本概念　　断言是一种让错误在运行时候自我暴露的简单有效实用的技术。它们帮助你较早较轻易地发现错误，使得整个调试过程效率更高。　　断言是布尔调试语句，用来检测在程序正常运行的时候某一个条件的值是否总为真，它能让错误在运行时刻暴露在程序员面前。使用断言的最大好处在于，能在更解决错误的发源地的地方发现错误。断...</summary><published>2008-03-10T03:56:00Z</published><updated>2008-03-10T03:56:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098470.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098470.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098457.html</id><title type="text">编写易于调试的vc代码</title><summary type="text">一 程序的设计　　要避免错误，首先要从好的设计开始。对于程序的设计，需考虑到程序的两个特性：　　1简单性 　　大多数常见的错误来源于程序设计中不必要的复杂成分。一个好的设计应该反映问题本身的要求，而不必为了刻意追求&amp;#8220;满足将来的需要&amp;#8221;而添加不必要的特性。实际上，简单优雅的设计比那些复杂的设计更能迎合未来的需求。　　2 耦合性 　　耦合(decoupling)性用来衡量不同对象...</summary><published>2008-03-10T03:48:00Z</published><updated>2008-03-10T03:48:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098457.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/10/1098457.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/07/1095483.html</id><title type="text">轻松实现一个操作ini文件的类</title><summary type="text">作者：lixiaosan（CSDN）前言： 相信很多朋友在编写自己的程序中，都需要把一些数据先期导入到程序中进行初始化。那么这个时候，比较好的做法就是把你所有的数据写入一个ini文件，然后在程序去读ini文件中的数据对行初始化。一.INI简介 那么什么是ini文件呢？ini文件是Initialization file的缩写，意即初始化文件。（从名字就可以看出它的功能了吧）。不仅你自己的程序可以使用...</summary><published>2008-03-07T09:26:00Z</published><updated>2008-03-07T09:26:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/07/1095483.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/07/1095483.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/07/1094777.html</id><title type="text">如何使用 MFC 嵌入并自动化 Microsoft Excel 工作表</title><summary type="text">概要本文介绍如何将 Microsoft Excel 工作表嵌入 SDI MFC 应用程序中的 View 对象。本文包含嵌入工作表和向单元格 A1 添加文本的分步骤说明，并包含解释每个步骤的注释。尽管可以将本文中的示例代码直接拿到您的应用程序中，但只有阅读和理解了文中的示例才会使您真正获益。更多信息下面是创建 MFC 应用程序的步骤： 1. 使用应用程序向导新建一个名为&amp;#8220;Embed_Ex...</summary><published>2008-03-07T03:11:00Z</published><updated>2008-03-07T03:11:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/07/1094777.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/07/1094777.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/05/1091170.html</id><title type="text">开发可以自动运行程序的U盘  </title><summary type="text">zhengv@gmail.com 一． 为什么要开发这样的U盘 可以自动运行程序的U盘插入电脑后U盘里面的程序会自动运行，这样的U盘可以作为软件厂商存储程序的载体，也可以作为U盘厂商扩展U盘功能的一种途径。举 几个例子：有加密功能的U盘可以把加密软件存放到U盘中，插入U盘后自动运行加密管理软件，极大方便了用户，厂商也不用另外提供软件；我甚至这么想过，把 温度芯片加入到U盘电路里面，U盘上的程序自动...</summary><published>2008-03-05T01:53:00Z</published><updated>2008-03-05T01:53:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/05/1091170.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/05/1091170.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/01/1087182.html</id><title type="text">vc++操作word </title><summary type="text">最近根据项目需要，需要我去用 vc++6.0 作一个 ActiveX web 组件。自己从来没有接触过这方面的编程，这次是头一遭！所以咱就做了，不过倒很出乎我的意料，比我想象的要快很多就完成了。现将 vc++6.0 操作 word 部分的关键代码部分帖出来，共享给大家。因为我在开发的时候遇到了很多问题，并且网上的资料很少，基本都是最基本的操作。所以帖出来，希望能让大家在开发的过程少走些弯路！ 工具...</summary><published>2008-03-01T06:02:00Z</published><updated>2008-03-01T06:02:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/01/1087182.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/01/1087182.html"/></entry><entry><id>http://www.cnblogs.com/scq2099yt/archive/2008/03/01/1087049.html</id><title type="text">linux socket 编程 </title><summary type="text">目 录 socket() bind() connect() listen() accept() send() 和recv() sendto() 和recvfrom() close() 和shutdown() getpeername() gethostname() socket[目录]socket()我们使用系统调用socket()来获得文件描述符：#include&amp;lt;sys/types.h&amp;g...</summary><published>2008-03-01T03:22:00Z</published><updated>2008-03-01T03:22:00Z</updated><author><name>施昌权-博客</name><uri>http://www.cnblogs.com/scq2099yt/</uri></author><link rel="alternate" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/01/1087049.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/scq2099yt/archive/2008/03/01/1087049.html"/></entry></feed>
