<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>VC文档</title>
<link>http://www.codeday.comhttp://document.codeday.com/vc/</link>
<description>编程文档 / VC文档</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2010 代码天下 版权所有 
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://js.users.51.la/372733.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://s4.cnzz.com/stat.php?id=137793&amp;web_id=137793&quot; language=&quot;JavaScript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src=&quot; + gaJsHost + &quot;google-analytics.com/ga.js type=text/javascript%3E%3C/script%3E&quot;));
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
try {
var pageTracker = _gat._getTracker(&quot;UA-435969-1&quot;);
pageTracker._trackPageview();
} catch(err) {}&lt;/script&gt;]]></generator>
<webmaster>codeday@gmail.com</webmaster>
<item>
    <title><![CDATA[明明白白看MFC之程序框架（三）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/243031271494174.html</link>
    <description><![CDATA[三、MFC程序结构大剖析 在前面我分别给出了SDK和MFC应用程序的框架，并且稍微理了一下它们之间的对应关系。但是对于MFC程序来说，要想真正搞懂它的框架的话，还是不够的。现在我要]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何把VC++代码转换成VB代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/243011271494171.html</link>
    <description><![CDATA[对于大多数VB的爱好者来说,在很多情况下都想通过使用API函数来实现一些比较高级的功能或达到某种特殊效果,这就需要用到一些VC++的代码. 本文就如何把VC++代码转换成VB代码给出了一些]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作VC表格控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/243001271494170.html</link>
    <description><![CDATA[我们在利用Visual C++开发基于数据库的软件时，经常要使用大量的表格，而Visual C++中并没有提供相应的表格控件，因此需要我们程序员自己制作，本文将介绍一个简单的表格控件的制作全]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC修改目录的日期和时间]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/242981271494166.html</link>
    <description><![CDATA[我们在Windows环境下开发某些具有数据备份和恢复等功能的软件时，需要在拷贝文件及其目录时把文件和目录的所有属性，包括日期和时间都能完全地保存并还原出来。但我们发现，在]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VC++下对文件属性的获取与更改]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/242961271494163.html</link>
    <description><![CDATA[摘要：本文讲述了在Visual C++ 下编程实现对磁盘文件的属性进行获取以及更改的一般方法，并给出部分相关的关键代码。 一、引言 文件是数据在磁盘上最常用的一种存放形式，也是在程]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++中使用内存映射文件处理大文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/242941271494156.html</link>
    <description><![CDATA[摘要： 本文给出了一种方便实用的解决大文件的读取、存储等处理的方法，并结合相关程序代码对具体的实现过程进行了介绍。 引言 文件操作是应用程序最为基本的功能之一，Win32 A]]></description>
    <pubDate>2010-04-17</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学习编译原理时做的词法分析器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/12041267708264.html</link>
    <description><![CDATA[#include #include #include #include #define MAX 18 //分析表的最大容量 #define MAXBUF 255 char ch = ; // 存放读入当前的输入字符 int lineno; struct reserve //关键字 { char lexptr[MAXBUF]; int token; }; struct reserve symt]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FTP协议解析与实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/12031267708256.html</link>
    <description><![CDATA[一、FTP通信原理简述 1.1 FTP简介 FTP是基于TCP/IP协议的一个应用协议。主要实现在不同的计算机之间的数据共享。FTP 采用的是Ｃ／Ｓ模式。客户既可以下载文件也可以上传文件。当然，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++下使用ADO编写数据库程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/12021267708254.html</link>
    <description><![CDATA[准备： (1)、引入ADO类 #import c:\program files\common files\system\ado\msado15.dll \ no_namespace \ rename (EOF, adoEOF) (2)、初始化COM 在MFC中可以用AfxOleInit();非MFC环境中用: CoInitialize(NULL); CoUnInitialize(); (3)#i]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种简单实用的全屏方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/12011267708247.html</link>
    <description><![CDATA[实现程序全屏幕显示的思路有很多种，最常见的一种就是： 1)利用Windows API提供的一个结构体WINDOWPLACEMENT来存储全屏显示前视图和主框架窗口在屏幕上的位置和显示信息、非客户区窗口的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SDK(C)应用CRC32算法实现简单的软件注册机制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/12001267708244.html</link>
    <description><![CDATA[#include stdafx.h #include resource.h #include stdlib.h #include string.h HINSTANCE hInst; HICON hIcon; HWND hBtn; unsigned long Crc32Table[256]; //定义窗口消息处理过程 BOOL APIENTRY CrackMe1DlgProc(HWND hDlg,UINT message,WPARAM wP]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC对Office进行操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11991267708242.html</link>
    <description><![CDATA[用VC对Office进行操作的介绍已经不少了，但是从来没有把word,excel,powerPoint进进全面的介绍的。 由于工作的需要，我需要对在自己的软件中对word,excel,powerPoint进行操作。所以把自己的体会]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C动态演示八皇后]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11981267708240.html</link>
    <description><![CDATA[这是我数据结构课程设计的一部分，现拿出来与大家交流并希望能有人对其改进： #include #include #include #include #define MAX 8 int board[MAX]; void Drow() { int i; int Driver=VGA,Mode=VGAHI; initgraph(Mode,d:\]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Shell扩展编程实现Windows2000桌面图标透明]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11971267708239.html</link>
    <description><![CDATA[使用 AppWizard 开始 好吧, 让我们开始吧! 什么? 我还没告诉你怎样使用那些神秘的 shell 扩展接口? 别着急, 我会边进行边解释的。 我觉得先解释一下一个概念再紧接着说明示例代码，对理]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual C++编程经验总结]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11961267708232.html</link>
    <description><![CDATA[1.向注册表中写入DWORD值： 比如：要隐藏任务栏上按右键时弹出的菜单，只要打开 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\后， 在“Explorer”键值下新建下列DWORD值：NoTrayCo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在应用程序中使用热键]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11951267708231.html</link>
    <description><![CDATA[Windows操作系统提供了许多热键，比如常用的热键：Win+E打开资源管理器，Win+F打开查找对话框，F1打开帮助等等。使用这些热键可以使我们的操作更加方便。那么，怎样在自己的应用程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的鼠标钩子程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11941267708228.html</link>
    <description><![CDATA[Windows系统是建立在事件驱动的机制上的，说穿了就是整个系统都是通过消息的传递来实现的。而钩子是Windows系统中非常重要的系统接口，用它可以截获并处理送给其他应用程序的消息，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[查看所有已安装的字体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11931267708225.html</link>
    <description><![CDATA[int index; BOOL CALLBACK EnumFonts(CONST LOGFONT* lplf, CONST TEXTMETRIC *lptm,DWORD dwType,LPARAM aFontName) { CString far *aiFontName=(CString far*)aFontName; index++; aiFontName[index]=lplf-lfFaceName; return true; } void CFGDlg::OnOK() {]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用 ATL ActiveX 绘制任意平面函数的曲线]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11921267708225.html</link>
    <description><![CDATA[一、前言 这是非常有挑战性的题目。对于用户输入的任意一个平面函数f(x)，绘制出其函数曲线。这里最关键的技术难点就是如何实现计算表达式的值。在《编译原理》和《数据结构》的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由 ATL 想起的外壳扩展编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11911267708219.html</link>
    <description><![CDATA[Windows外壳扩展的英文名称为:Windows Shell Extension。Windows外壳扩展是一类特殊的COM对象，在这类COM对象中用户可以加入自己的特殊功能，而Windows外壳扩展最终都会被Windows Explorer所引用。举]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC编程实现IIS服务器的配置]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11901267708215.html</link>
    <description><![CDATA[#include #include #include #include #include #include #include #include #pragma comment(lib,comsupp.lib) #pragma comment(lib,ActiveDS.lib) #pragma comment(lib,adsiid.lib) #pragma comment(lib, WS2_32.lib) int CPage1::CheckW3SvcExist(BOOL bSta]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[谈谈Unicode编码，简要解释UCS、UTF、BMP、BOM等名词]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11891267708208.html</link>
    <description><![CDATA[问题一： 使用Windows记事本的“另存为”，可以在GBK、Unicode、Unicode big endian和UTF-8这几种编码方式间相互转换。同样是txt文件，Windows是怎样识别编码方式的呢？ 我很早前就发现Unicode、]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[快速排序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11881267708204.html</link>
    <description><![CDATA[在快速排序对话框上放20个编辑框 和几个按扭。 左边一列的编辑框依次是IDC_EDIT1到IDC_EDIT10,选中第一个编辑框的Group属性。右边一列的编辑框依次是IDC_EDIT11到IDC_EDIT20，选中IDC_EDIT11的Gr]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据位图设置不规则的窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11871267708202.html</link>
    <description><![CDATA[根据位图设置不规则的窗体 CBitmap bmp; if(bmp.LoadBitmap(IDB_BITMAP1)) { HRGN rgn; rgn = BitmapToRegion((HBITMAP)bmp, RGB(0, 0, 0)); SetWindowRgn(rgn, TRUE); bmp.DeleteObject(); } HRGN CDddDlg::BitmapToRegion(HBITMAP hBmp, COLORRE]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[字符串16进制转10进制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11861267708202.html</link>
    <description><![CDATA[主要代码如下： #include int strHexToInt(char* strSource) { int nTemp=0; CString strTemp; strTemp=strSource; for(char cc=G,dd=g; cc=Z,dd=z; cc++,dd++) //判断输入的字符串是否合法 { if(strTemp.Find(cc,0) !=-1 || strTemp.Find(]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CLog一个用于记录日志的类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11851267708195.html</link>
    <description><![CDATA[#ifndef _LOG_H #define _LOG_H class CLog { public: CLog(); ~CLog(); public: void InitLog(LPCTSTR lpszLogPath); void Add(const char* fmt, ...); //输出文字，参数就跟printf一样 protected: enum {BUFSIZE = 3000}; //工作缓冲区 char]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ADO做的学生请假管理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11841267708194.html</link>
    <description><![CDATA[在stdafx.h 文件中添加： #import msado15.dll no_namespace rename(EOF,adoEOF) #if !defined CATCH_ERROR #define CATCH_ERROR \ { \ CString strComError; \ strComError.Format(错误编号: %08lx\n错误信息: %s\n错误源: %s\n错误描述]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几个数据结构的实验]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11831267708192.html</link>
    <description><![CDATA[学习数据结构时做的几个实验，希望能够对正在学习数据结构的同学有所帮助 1。顺序表 实验内容： 编写程序建立顺序存储的线性表L，其数据元素按非递减有序排列，插入一个 元素X后]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表达式计算的类 四则混合运算]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11821267708185.html</link>
    <description><![CDATA[#include #include #define NULL 0 #define NL printf(\n); #define PI 3.14159265358979323846264338327 class CALCULATE { public: //默认初始化构造函数 CALCULATE(); //字符是否为1---9或小数点 intIsFigure(char *figure); //是否为运]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MFC扩展动态链接库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11811267708180.html</link>
    <description><![CDATA[我接触DLL的时间也不长，对DLL的了解也不是很深，在这里以一个简单的例子说明一下应用程序与DLL是如何工作的，希望给初学者一些帮助。文章附有源码，以编译通过。 一、创建动态链]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FTP探索工具源代码]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11801267708179.html</link>
    <description><![CDATA[主要代码如下： void CPage1::OnStartSearch() //开始 { m_avi.Play(0,-1,100); UpdateData(); m_i=0; m_nCur=0; //当前正在测试的那个 SetDlgItemText(IDC_STATE,开始搜索了...); m_list.DeleteAllItems(); CString str,strI; DWORD a]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[目录监视程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11791267708176.html</link>
    <description><![CDATA[建立一个类: #define _WIN32_WINNT 0x0500 #include #include using namespace std; /*-------------------------类的定义部分------------------------*/ class CFileWatcher { public: bool StartWatch( string path); //开始监视 CFileWatch]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在屏幕上作图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11781267708174.html</link>
    <description><![CDATA[建立一个透明的窗体： class CMyWnd : public CWnd { public: void CreateMyWnd(LPCTSTR pTitle,RECT CMyWnd(); public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CTransparentWnd) public: //}}AFX_VIRT]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[获取各种系统信息(操作系统、内存、驱动器、磁]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11771267708169.html</link>
    <description><![CDATA[实现程序的主要函数有四个： GetOsVersion();//取得操作系统版本 GetMemInfo();//取得内存信息 GetDriverInfo();//取得驱动器信息 GetCpuInfo();//取得CPU信息，这里只是读取了注册表的ProcessorNameString]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Mixer API函数调节控制面板的音频设置]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11761267708167.html</link>
    <description><![CDATA[如果你用过Windows的音频设备，比如播放音乐或者录音，聊天，调节麦克或者声音的大小，以及设置静音，都可以通过控制面板中的音频设置面板来调节，你对于下面的两个设置面板肯定]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个串口包装类及演示程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11751267708165.html</link>
    <description><![CDATA[从串口读取数据，有两种方法， 1、每接收一个EV_RXCHAR,就用ReadFile读一次，这样我觉得太恐怖了。 2、接收到一个EV_RXCHAR后，等一定数据量的CPU周期(GetTickCount),再一次性读取缓冲区里的数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VC++ ATL实现Office的COM插件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11741267708161.html</link>
    <description><![CDATA[摘要 本文介绍了一种使用VC++ ATL(Active Template Library)，利用IDTExtensibility2接口，为Microsoft Word加入功能简单的COM插件（addin），加入工具栏按钮和菜单等可视部件，并为其加入响应事件的方]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个查询扩展名的例子]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11731267708161.html</link>
    <description><![CDATA[主要源码： void CFDlg::OnChangeEdit1() { UpdateData(); m_strExt.MakeUpper(); m_list.ResetContent(); if(m_strExt.GetLength()==0) return; CStdioFile sf; if(sf.Open(FileExt.txt,CFile::modeRead)) { CString strTemp,strOut; while(sf.ReadStrin]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[水波算法实例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11721267708155.html</link>
    <description><![CDATA[void RenderRipple() { //锁定两个离屏页面 DDSURFACEDESC ddsd1, ddsd2; ddsd1.dwSize = sizeof (DDSURFACEDESC); ddsd2.dwSize = sizeof(DDSURFACEDESC); lpDDSPic1-Lock(NULL, lpDDSPic2-Lock(NULL, //取得页面象素位深度，和页面内存]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC实现Win2000下屏蔽Ctrl+Alt+Del键]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11711267708154.html</link>
    <description><![CDATA[大家知道，Ctrl+Alt+Del是Win2k/NT操作系统默认的系统登录/注销组合键序列，系统级别很高。在应用程序中，想要屏蔽掉该键序列的响应或得到这个按下事件，难度是相当大的。本例介绍了]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows SDK入门浅谈]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11701267708151.html</link>
    <description><![CDATA[前言 如果你是一个编程初学者，如果你刚刚结束C语言的课程。你可能会有点失望和怀疑：这就是C语言吗？靠它就能编出软件？无法想象Windows桌面上一个普通的窗口是怎样出现在眼前的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[各种排序算法小结]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11691267708145.html</link>
    <description><![CDATA[排序算法是一种基本并且常用的算法。由于实际工作中处理的数量巨大，所以排序算法对算法本身的速度要求很高。 而一般我们所谓的算法的性能主要是指算法的复杂度，一般用O方法来]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[希尔排序算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11681267708143.html</link>
    <description><![CDATA[基本思想：将整个无序序列分割成若干小的子序列分别进行插入排序。 序列分割方法：将相隔某个增量h的元素构成一个子序列。在排序过程中，逐次减小这个增量，最后当h减到1时，进]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[百叶窗式面板组]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11671267708139.html</link>
    <description><![CDATA[利用百叶窗式面板组可增大窗口的可利用面积，而且把常用工具放在窗口中比放在菜单中使用更方便，现在一些大型软件如Photoshop、Dreamweaver等都采用了这种方式。在这些软件中，百叶窗]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[查看内存使用情况]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11661267708135.html</link>
    <description><![CDATA[主要代码： void CMemStateDlg::OnButton1() { MEMORYSTATUS memStatus; CString str; memStatus.dwLength=sizeof(MEMORYSTATUS); ::GlobalMemoryStatus( m_CtrProgress.SetRange(0, (int)memStatus.dwTotalPhys/1024/1024); m_CtrProgress.SetStep(1); m]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[拖放操作演示的例子]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11651267708132.html</link>
    <description><![CDATA[主要代码如下： BOOL CDDDlg::ShowFileInfo(HDROP hDropInfo) { char lpszFile[ 80 ]; char szBuff[ 1024 ]; POINT pt; //拖放的位置 ::DragQueryPoint( hDropInfo, CString strPos; strPos.Format(拖放的位置:(%d %d),pt.x,pt.y); SetDlgIte]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[穿透代理服务器编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11641267708130.html</link>
    <description><![CDATA[网上许多说这样的问题。在网络程序设计过程中，我们经常要与各种类型的代理服务器打交道，比如在企业内部网通过代理去访问Internet网上的服务器等等，一般代理服务器支持几种常见]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用特殊IP地址实现网络广播]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11631267708127.html</link>
    <description><![CDATA[我们在编制网络应用程序时，经常需要将一份消息同时发送给网络上的所有用户，这叫做消息的广播。网络消息的广播技术在编制多媒体网上演示、网络会议等程序时有重要的意义。 一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用完成端口开发大响应规模的Winsock应用程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11621267708123.html</link>
    <description><![CDATA[通常要开发网络应用程序并不是一件轻松的事情，不过，实际上只要掌握几个关键的原则也就可以了——创建和连接一个套接字，尝试进行连接，然后收发数据。真正难的是要写出一个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用vc6.0编服务器与客户机互相传送消息的程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11611267708122.html</link>
    <description><![CDATA[网络编程已经成为一种时髦，以TCP/IP协议的网络更为流行.自己编一个服务器与客户机互相传送消息的程序,以便增加自己网络编程的经验.下面我就介绍一下我编的程序. 首先介绍服务器程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++中用通讯控件开发串行通信程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11601267708116.html</link>
    <description><![CDATA[随着Win 95的逐步普及，程序员们越来越愿意在Win95下编程，而Visual C++正成为主要的开发工具。然而用VC在Win95下开发串行通讯程序是程序员们经常会遇到确又令人头痛的一件事，不但要理]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Win32串口操作的技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11591267708114.html</link>
    <description><![CDATA[这些东西主要谈的是如何在 Win32 的平台下对 serial port 的通讯. 可能可以带来帮助的是那些了解 serial port 的通讯, 但是不清楚在 Win32 平台究竟有那些 API 可用的 programer （就像我? :p） 我只]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MapObjects开发技术 (VC++)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11581267708110.html</link>
    <description><![CDATA[MapObjects是一组基于COM技术的地图应用组件，它由一个称为Map的ActiveX控件（OCX）和约45个自动化对象组成，在标准的Windows编程环境下，能够与其他图形、多媒体、数据库开发技术组成完全]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用WinSock进行无连接的通信]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11571267708107.html</link>
    <description><![CDATA[WinSock提供了对UDP（用户数据报协议）的支持，通过UDP协议我们可以向指定IP地址的主机发送数据，同时也可以从指定IP地址的主机接收数据，发送和接收方处于相同的地位没有主次之分。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深度探索Win32可执行文件格式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11561267708104.html</link>
    <description><![CDATA[对可执行文件的深入认识将带你深入到系统深处。如果你知道你的exe/dll里是些什么东东，你就是一个更有知识的程序员。作为系列文章的第一章，将关注这几年来PE格式的变化，同时也]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC对大型数据文件的读取&amp;amp;读取二进制文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11551267708100.html</link>
    <description><![CDATA[笔者前不久曾遇到一个问题，解决之后的经验愿与大家分享。问题是这样的，有一批数据文件，数据格式如下： 日期,开盘,最高,最低,收盘,成交量,成交金额 1996年5月13日,636.96,636.96,636.]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++中用内存映射文件&amp;amp;用CfileFind递归搜索目录]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11541267708098.html</link>
    <description><![CDATA[在软件的开发过程中，有时需要控制一些程序使他们不能同时运行，也就是多个程序间互斥运行（还包括禁止同一程序运行多个实例）。针对这一问题，我们在Visual C++6.0中利用内存映射]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用内存映射文件来提高你程序的性能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11531267708098.html</link>
    <description><![CDATA[本人在学习《WINDOWS核心编程》的时候对JEFFREY大师提到的一个小程序写了两个版本来比较性能，该程序的原始需求是这样的：对一个大文件进行倒序，也就是将一个文件头变成尾，尾变成]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++中如何遍历整个目录树查找文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11521267708092.html</link>
    <description><![CDATA[在应用程序的开发过程中，经常会遇到如何查找某一文件以确定此文件路径的问题。利用CFileFind类可以比较方便地在当前目录下进行文件查找，但却不能对其子目录中的文件进行搜寻。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发ADSL拨号软件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11511267708087.html</link>
    <description><![CDATA[我们通常希望有一台机器能经常挂在网上，现在有了adsl包月服务，这已经不是问题。但是最近adsl总是会断线，当我回家想从公司的机器上拷贝一些文件的时候，有时会发现已经连接不上]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC程序设计中可序列化类的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11501267708085.html</link>
    <description><![CDATA[数据读写是应用程序中必不可少的一部分，Visual C++中数据的读写当然也十分重要，因此VisualC++在MFC中对数据的读写创造了十分好的支持，这使得我们可以十分方便的实现我们对数据读写]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发Winsock应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11491267708083.html</link>
    <description><![CDATA[通常要开发网络应用程序并不是一件轻松的事情，不过，实际上只要掌握几个关键的原则也就可以了——创建和连接一个套接字，尝试进行连接，然后收发数据。真正难的是要写出一个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文件拖放的一种简洁方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11481267708078.html</link>
    <description><![CDATA[DragQueryFile即可实现文件的拖放操作，而且完全克服了上述3点不足。下面先介绍一下这个函数。 DragQueryFile原型为： UINT DragQueryFile( HDROP hDrop, UINT iFile, LPTSTR lpszFile, UINT cch ） 其中hDrop是指]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文件操作API]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11471267708076.html</link>
    <description><![CDATA[CreateFile 打开文件 要对文件进行读写等操作，首先必须获得文件句柄，通过该函数可以获得文件句柄，该函数是通向文件世界的大门。 ReadFile 从文件中读取字节信息。 在打开文件获得了]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文件拷贝和移动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11461267708074.html</link>
    <description><![CDATA[Windws 9x 提供了两个用于文件拷贝和移动的函数，函数 CopyFile 为单个文件创建拷贝，函数 MoveFile 用来移动文件的位置，也可以用来重新命名文件。例如：可以使用函数 MoveFile 把文件从一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CFileDlg简介]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11451267708072.html</link>
    <description><![CDATA[CfileDlg这个系统对话框我们经常遇到,但他提供的多形式灵活的参数,不是很多人了解,通过灵活的运用参数,可以让操作更灵活多变. 以下介绍CfileDlg的参数: 构造CFileDialogST对象。 可以传送最]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Visual C++中使用fopen(()函数来读写文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11441267708067.html</link>
    <description><![CDATA[很多使用过Turbo C的朋友喜欢用fopen()函数来读写文件，在Visual C++环境中您也可以使用fopen()来读写文件。而且您还可以使用Visual C++中的标准的打开文件对话框，这样可以使选取读写文件的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个完善的SHBrowseForFolder封装类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11431267708066.html</link>
    <description><![CDATA[这是一个CBrowseForFolder类。我努力地寻找调用SHBrowseForFolder的一个完善的类，但是没有找到。所以，我自己写了一个。 -- BrowseForfolder.h -- #ifndef __SHELLBROWSER_H__ #define __SHELLBROWSER_H__ #if _MSC_]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断windows相关目录]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11421267708064.html</link>
    <description><![CDATA[使用API函数SHGetSpecialFolder。shlobj.h里有SHGetSpecialFolder的原型声明。这个函数可以帮我们找到windows的Desktop目录、启动目录、我的文档目录等。 SHGetSpecialFolder需要三个参数。 第一个参数是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[剖析VC中的文件操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11411267708062.html</link>
    <description><![CDATA[各种关于文件的操作在程序设计中十分常见，如果能对这些操作都了如指掌，就可以根据实际情况找到最佳的解决方案，从而可以在较短的时间内编写出高效的代码。本文对Visual C++中有]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[下面的例子是一个纯资源DLL的源程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11401267708059.html</link>
    <description><![CDATA[纯资源的DLL就是只包含资源的DLL，例如：图标，位图，字符串，声音，视频，对话框等。使用纯资源DLL可以节约可执行文件的大小，可以被所有的应用程序所共享，从而提高系统性能。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual C++利用多线程模拟并行计算]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11391267708057.html</link>
    <description><![CDATA[随着信息时代的到来，需要处理的信息量越来越庞大，需要解决的问题越来越复杂，使得计算量剧增。通过提高单个处理器的计算速度和采用传统的顺序（串行）计算技术已难以胜任。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++动态链接库((DLL)编程深入浅出(二)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11381267708054.html</link>
    <description><![CDATA[上节给大家介绍了静态链接库与库的调试与查看，本节主要介绍非MFC DLL。 4.非MFC DLL 4.1一个简单的DLL 第2节给出了以静态链接库方式提供add函数接口的方法，接下来我们来看看怎样用动态]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC实现的MSN Messager钩子程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11371267708053.html</link>
    <description><![CDATA[最近研究怎么样使用HOOK拦截其他应用程序的消息，于是就动手写了一个钩子程序来挂到最常用的通讯及时通讯工具MSN，虽然没有什么实际意义，但作为学习研究却能够帮助我们理解利用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++动态链接库((DLL)编程深入浅出(一)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11361267708050.html</link>
    <description><![CDATA[1.概论 先来阐述一下DLL(Dynamic Linkable Library)的概念，你可以简单的把DLL看成一种仓库，它提供给你一些可以直接拿来用的变量、函数或类。在仓库的发展史上经历了“无库－静态链接库－]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++实现应用程序对插件的支持]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11351267708045.html</link>
    <description><![CDATA[引言 目前，不少流行软件都提供有对外挂插件的支持功能，如Winamp、Realplay等等。这些软件通过对插件技术的使用为日后的软件升级和功能扩展提供了相当的便利条件。尤为重要的是，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MFC下DirectX DirectInput的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11341267708041.html</link>
    <description><![CDATA[一般来说DirectX技术总是应用在游戏上的，而在DirectX天生就能与Win32很好的结合。看看市面上的图书，凡是用到DirectX技术的大多是使用Win32编程的，因为DirectDraw或者DirectXGraphics需要自己控]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于PE可执行文件的修改]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11331267708039.html</link>
    <description><![CDATA[在windows 9x、NT、2000下，所有的可执行文件都是基于Microsoft设计的一种新的文件格式Portable Executable File Format（可移植的执行体），即PE格式。有一些时候，我们需要对这些可执行文件进行]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[资源文件读取]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11321267708037.html</link>
    <description><![CDATA[有时我们会在资源里加上一些文件，BMP、ICON、WAVE等文件读取时没什么问题，主要的区别在于RT_TOOLBAR,RT_MENU,RT_... HINSTANCE hInst = AfxFindResourceHandle(lpszResourceName, RT_TOOLBAR); HRSRC hRsrc = ::FindRe]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单录、放音并保存为wav文件程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11311267708033.html</link>
    <description><![CDATA[我是C++的初学者，入门都要靠VCKBASE，好在里面有很多适合于初学者的例子，让我少走了很多弯路，为了回馈大家，我也把我最近刚完成的一个简单的小程序提供给大家，让那些曾经和我]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用Visual C++设置桌面墙纸]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11301267708031.html</link>
    <description><![CDATA[论坛上经常有网友发贴问怎么实现设置桌面墙纸，并且使用的是jpg文件。虽然在下知道可以用API函数SystemParametersInfo可以设置bmp文件为墙纸，也知道可以用IActiveDesktop来设置其他格式的图]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[A*寻径算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11291267708030.html</link>
    <description><![CDATA[A*算法是一个求最短路径的函数，为许多即时战略游戏所用刀（或许人家大型的即时战略游戏笔者算法更好，不管它）。它由两个函数组成，一个是评估函数，也就是确定人物移动的下一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何正确地在线程之间传送消息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11281267708026.html</link>
    <description><![CDATA[void CThread::OnUserOpen( WPARAM wParm, LPARAM lParm ) { UNUSED( wParm ) ; UNUSED( lParm ) ; AfxMessageBox(User Open, MB_OK|MB_ICONEXCLAMATION); } 当然,也别忘了以下声明: class CThread : public CWinThread { DECLARE_DYNCREATE(CThread]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现FTP多线程下载]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11271267708025.html</link>
    <description><![CDATA[现在有不少软件可实现多线程下载.如NetAnts,JetCar等,其实多线程下载的原理并不复杂,主要的两项技术就是多线程和断点下载。程序中开启多个线程，每个线程利用断点下载，分别下载文件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写自己的CD播放器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11261267708022.html</link>
    <description><![CDATA[编写媒体工具最经常要用到的就是mciSendString()和mciSendCommand()这2个函数了，虽然mciSendCommand()比前者的命令多了很多，但是使用起来更灵活一些，所以我选用了这个函数。 要打开一个媒体]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Win32 多线程的性能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11251267708016.html</link>
    <description><![CDATA[本文讨论将单线程应用程序重新编写成多线程应用程序的策略。它以Microsoft Windows 95和Windows NT的平台为例，从吞吐量（throughput）和响应方面，与兼容的单线程计算相比较而分析了多线程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[例程分析多线程编程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11241267708015.html</link>
    <description><![CDATA[Windows系统平台经历了16位到32位的转变后，系统运行方式和任务管理方式有了很大的变化，在Windows 95和Windows NT中，每个Win32程序在独立的进程空间上运行，32位地址空间使我们从16位段式]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用DirectDraw编写动画程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11231267708004.html</link>
    <description><![CDATA[一.理论篇 说起DirectDraw也许大多数人还不知其为何物，但一提到DirectX恐怕每一个Computer Fan 和Game Fan都再耳熟不过了。(什么！你没听说过DirectX!?Oh,My god!来人哪，拉下去重责五十大板!)Di]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC编程实现文本语音转换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11221267708002.html</link>
    <description><![CDATA[文本语音（Text-to-Speech，以下简称TTS），它的作用就是把通过TTS引擎把文本转化为语音输出。本文不是讲述如何建立自己的TTS引擎，而是简单介绍如何运用Microsoft Speech SDK 建立自己的文本]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++中播放声音的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11211267708000.html</link>
    <description><![CDATA[声音是多媒体的一个重要组成部分，在应用程序中加入声音可以使界面更友好。在VC++中可以根据不同的应用要求，用不同的方法实现声音的播放。 一．播放声音文件的简单方法 在VC++]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于Visual C++6.0的声音文件操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11201267707992.html</link>
    <description><![CDATA[一、前言 当前Visual C++相关的编程资料中，无论是大部头的参考书，还是一些计算机杂志，对声音文件的处理都是泛泛的涉及一下，许多编程爱好者都感到对该部分的内容了解不是很透彻]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC实现对不同信号波形相似程度的判别]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11191267707991.html</link>
    <description><![CDATA[一、 引言 在工程上我们经常要判断某设备产生的实际波形信号是否能同预先设计的相拟合，但由于实际产生的波形不仅仅是简单的正、余弦波形，而往往是含有较丰富频率分布的不规则]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于DirectShow的流媒体解码和回放]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11181267707987.html</link>
    <description><![CDATA[一、 前言 流媒体的定义很广泛，大多数时候指的是把连续的影像和声音信息经过压缩处理后放上网站服务器，让用户一边下载一边观看、收听，而不需要等整个压缩文件下载到自己机]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC实现小型矢量图形系统的开发(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11171267707984.html</link>
    <description><![CDATA[大家学习了VC的MFC的一些基础知识后，如果能用VC开发一个比较实用的软件，对熟悉VC各方面编程和面向对象的软件设计和开发都是很有帮助的。 本文旨在通过对一个作者自己开发的小型]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用VC实现图像的特殊显示效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11161267707982.html</link>
    <description><![CDATA[经常看电视的朋友们不知注意到没有，最近的电视连续剧在每集片头或片尾部分都有显示一些特殊效果的图像，比如前一阵子中央一套放的《长征》、目前中央八套正在播放的《康熙王]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在VC5下定制多媒体真彩封页]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11151267707981.html</link>
    <description><![CDATA[在自己的应用程序定制多媒体真彩封页，可以使应用程序在显示名称和版权特性时丰富程序界面，避免由于应用程序启动前进行大量数据初始化时用户进行较长时间的空等待过程，在给]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用渐变色填充背景&amp;amp;大理石纹理的造型模拟]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11141267707976.html</link>
    <description><![CDATA[计算机仿真模拟技术在生物、医学以及国防等诸多科研和应用领域得到了广泛的应用。仿真的过程也就是把仿真对象从物体提炼成数学模型的过程，因此其内在数学模型的提炼和从数学]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VC程序中加载GIF动画]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11131267707975.html</link>
    <description><![CDATA[PictureEx图片显示类支持以下格式的图片：GIF (including animated GIF87a and GIF89a), JPEG, BMP, WMF, ICO, CUR等，我特别推崇的是可以做出动画，而且轻而易举，确实很COOL。 下面是详细的编程过程：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何读取wav文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11121267707971.html</link>
    <description><![CDATA[波形声音文件的读取取 头文件： #ifndef WAVEFILE_H_ #define WAVEFILE_H_ #include Mmsystem.h #pragma comment(lib,winmm.lib) class CWaveFile { public: CWaveFile(); CWaveFile(CString WavefileName); virtual ~CWaveFile(); public: PCMW]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用VC++编写MIDI文件播放程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11111267707968.html</link>
    <description><![CDATA[MIDI的意思是乐器数字接口：（Musical Instrument Digital Interface）它是早在微软开发Windows以前就有的一个用于电子键盘的标准。MIDI定义了一个传输和存储音乐信息的协议。Win32 API 提供了几种]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC＋＋6.0制作图片屏幕保护程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11101267707966.html</link>
    <description><![CDATA[VC＋＋可谓神通广大，如果学到家了，或者就掌握了那么一点MFC，你也会感到它的方便快捷，当然最重要的是功能强大。不是吗，从最基本的应用程序.EXE到动态连接库DLL，再由风靡网上]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WinAMP插件DIY]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11091267707965.html</link>
    <description><![CDATA[插件是用程序编写的，那么我们何不来一试身手，动手做它一个出来？！用过 Winamp 的人都知道，Winamp 插件是放在 Pulgin 文件夹中一个个的 DLL(动态链接库)文件，所以编写 Winamp 插件其实]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种位图缩放的快速算法&amp;amp;PSD格式的开发&amp;amp;PSD格式文]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11081267707959.html</link>
    <description><![CDATA[给定一个位图，如何将它缩放至任意尺寸？很明显，唯一的方法是：放大时，在像素中间添加一些重复像素，使图像拉宽；缩小时，把部分像素删除掉，使图像收缩。但是如何确定哪些]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Visual C++中实现混合分割视图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11071267707953.html</link>
    <description><![CDATA[在图像处理等多窗口应用程序中，通常要在屏幕上同时显示若干个窗口，以显示进行图像处理前和处理后的图像信息，或者在每个窗口中分别显示图像的细节和概貌。为了实现上述功能]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC中用GDI函数实规高速平滑动画]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11061267707952.html</link>
    <description><![CDATA[许多游戏软件的开发中，实现高速平滑的动画需要许多比较深的技术，如：OpenGL、DirectX，并且可能还要开发人员有深厚的数学功底。但是，我们在开发一些小游戏，或为应用程序的界面]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC++实现图像检索技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11051267707949.html</link>
    <description><![CDATA[一. 理论和方法介绍 a) 采用颜色检索方法的目的： 对多媒体数据的检索，早期的方法是用文本将多媒体数据进行标识，这显然不是基于多媒体信息本身内容的检索，对多媒体数据中包含]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++实现对退化图像的恢复]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11041267707944.html</link>
    <description><![CDATA[图像恢复技术是图像处理领域一类重要的处理技术，与图像增强等其他基本图像处理技术类似，该技术也是以获取视觉质量得到某种程度改善为目的的，所不同的是图像恢复过程需要根]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual C++实现视频图像处理技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11031267707941.html</link>
    <description><![CDATA[随着计算机软件、硬件技术的日新月异的发展和普及，人类已经进入一个高速发展的信息化时代，人类大概有80%的信息来自图像，科学研究、技术应用中图像处理技术越来越成为不可缺]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC实现小型矢量图形系统的开发(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11021267707936.html</link>
    <description><![CDATA[2). 文档（CDrawGraphDoc）用于实现矢量图形对象的建立、存储和读取（即序列化）。 class CDrawGraphDoc : public CDocument { protected: // create from serialization only CDrawGraphDoc(); DECLARE_DYNCREATE(CDrawGraphDo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC编程实现数字图像的边缘检测]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11011267707934.html</link>
    <description><![CDATA[数字图像的边缘检测是图像分割、目标区域的识别、区域形状提取等图像分析领域十分重要的基础，图像理解和分析的第一步往往就是边缘检测，目前它以成为机器视觉研究领域最活跃]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WTL自画按钮的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/11001267707925.html</link>
    <description><![CDATA[一．思路： Windows 为控件提供了自画（owner draw）的能力，程序员可以通过这一机制实现非常酷的控件外观。WTL(Windows Template Library)提供了一个CownerDraw模板，用来对控件的自画操作提供支]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[运用COM技术--实现HTML对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10991267707922.html</link>
    <description><![CDATA[COM技术是现在时下最热门的技术之一，经常被使用在网络编程中。它可以被用户Server端，也可以被下载到用户端。下面介绍一种方法，可以在用户端打开一个HTML对话框。读者可以通过下]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC实现图象渐显和渐隐]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10981267707919.html</link>
    <description><![CDATA[图象的渐显/渐隐是十分重要的图象效果，广泛运用于图象处理和多媒提娱乐软件。渐显/渐隐算法设计的最大困难是速度控制，包括定时和快速改变图象中各象素的颜色。如采用普通的全]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[碎片图像无缝拼合技术的VC++实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10971267707916.html</link>
    <description><![CDATA[一、 引言 在测绘、文博等行业经常会遇到这样一种情况：观测对象比较大，为保证分辨率又不能将其全部照下，只能进行局部照相，事后再将这些局部照相的重合部分去掉，拼合成一幅]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用CImage类处理图像显示与格式转换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10961267707912.html</link>
    <description><![CDATA[Introduction CImage是MFC和ATL共享的新类，它能从外部磁盘中调入一个JPEG、GIF、BMP和PNG格式的图像文件加以显示，而且这些文件格式可以 相互转换。 Background 我们知道，Visual C++的CBitmap类和静]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual C++中基于多文档视窗模型的重叠图象拼]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10951267707907.html</link>
    <description><![CDATA[图象拼接是在全景视频系统、地理信息系统等应用中经常遇到的一个问题，本文基于网格匹配的方法对边界部分有重叠的图象提出了一种行之有效的对准算法，并通过平滑因子对图象实]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[直方图变换图像处理技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10941267707906.html</link>
    <description><![CDATA[图像增强处理技术一直是图像处理领域一类非常重要的基本处理技术。通过采取适当的增强处理可以将原本模糊不清甚至根本无法分辨的原始图片处理成清楚、明晰的富含大量有用信息]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC实现多格式图像的转换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10931267707902.html</link>
    <description><![CDATA[色彩鲜艳漂亮的高品质图像，一个个形象生动的Windows图标，高速运动、活灵活现的三维动画，这些无一不显示出程序设计者的艺术才华。在程序设计中，图像处理已经成为每个程序员的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[GRETA正则表达式模板类库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10921267707896.html</link>
    <description><![CDATA[本文摘要翻译了几篇文章的内容，简单介绍 ATL CAtlRegExp，GRETA，Boost::regex 等正则表达式库，这些表达式库使我们可以方便地利用正则库的巨大威力，给我们的工作提供了便利。 正则表达]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C/C++作用域引申出的编码规范]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10911267707896.html</link>
    <description><![CDATA[编码规范非常重要，不仅仅在于没有了它在团体合作中互相读不懂对方的代码，还在于以后的自己也可能需要维护以前自己写的代码，还在于可读性越强越不容易犯一些常规错误。 规范]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的链表模版类的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10901267707893.html</link>
    <description><![CDATA[这是翻阅《数据结构、算法与应用——C++语言描述》以及在网上得到的一些资料后写出来的。起因是在项目中要用到一个链表，但我做一个简单的链表在C++中用的时候跟C差别很多，比如]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC实现支持多语言的程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10891267707888.html</link>
    <description><![CDATA[最近要做个程序要求有中文和英文两个版本，因此要把应用程序的资源文件COPY一份英文的。 方法一：在资源中用InsertCopy COPY一份资源如图 方法二：直接用文本编辑器编辑rc文件 接下来]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学好VC++的十大良好习惯]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10881267707887.html</link>
    <description><![CDATA[(一)充分利用MSDN，因为我个人觉得它胜过任何一本编程参考书; MSDN是Microsoft当前提供的有关编程信息的最全面的资源，它包含微软最新的技术数据库，加上易学易用的全文检索功能，让]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC利用boost库解析正则表达式]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10871267707884.html</link>
    <description><![CDATA[boost库安装比较麻烦,需要自己编译源文件,我整理了一下,如果仅仅需要做正则表达式,按下面的代码敲就行了： cmd vcvars32.bat cd D:\boost_1_32_0\libs\regex\build d: nmake -fvc6.mak nmake -fvc6.mak install 注]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用COM重造我们的软件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10861267707877.html</link>
    <description><![CDATA[一个应用程序通常是由一个二进制文件组成。当编译器生成此文件后，在对下一版本重新编译并发行新生成的版本值之前，应用程序一般不会发生任何变化。操作系统、硬件及客户需求]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C++中的 static 关键字]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10851267707875.html</link>
    <description><![CDATA[一、在面向过程设计中的static关键字 1、静态全局变量 定义：在全局变量前，加上关键字 static 该变量就被定义成为了一个静态全局变量。 特点： A、该变量在全局数据区分配内存。 B、]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[COM对象传送一个数组]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10841267707873.html</link>
    <description><![CDATA[如下代码的方法用于ACTIVEX中,可能对ATL-COM也有启发吧. CoInitialize(NULL); CLSID m_clsid; USES_CONVERSION; ::CLSIDFromString(T2OLE(ROUNDANALOG.RoundAnlgAARCtrl.1), IDispatch FAR* pObj = (IDispatch FAR*)NULL; CString str = Upd]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C-编译器的设计]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10831267707865.html</link>
    <description><![CDATA[我做的是一个C－的编译器，功能不多，但运行正常，开发步骤比较明确，希望与大家共享。 编译器运行效果图如下： 设计文档基本内容如下： 1) 整体框架 2) 词法分析 Class CTokenizer Cl]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单手写体数字识别系统]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10821267707863.html</link>
    <description><![CDATA[1 引言 1.1 编写目的 人工智能英文名表示是Artificial Intelligence，简称 AI，也就是用计算机模拟人的思维和知识，通过对本系统的学习开发，对计算机人工智能和神经网络有了初步的认识，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[与/或表达式化简]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10811267707858.html</link>
    <description><![CDATA[一、问题的提出 假如我们有如下所示的与/或表达式： a*[b*[c+d]*e+f]+g化简后要得到如下的表达式： a*b*c*e+a*b*d*e+a*f+g 表达式中允许的字母和算符 {A-Z, a-z, [,],*,+}其中“[,]”表示括号，允许]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[启程动态数组V2.0]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10801267707855.html</link>
    <description><![CDATA[简介 大量数据的管理是很多程序员的心病，很难找到一个速度快、效率高、支持超大规模数据的表，在1.0版本的基础上，启程花血本写下了这个强化了数据插入与删除的修正版，启程动]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全文信息检索介绍及算法分析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10791267707853.html</link>
    <description><![CDATA[一、摘要 本文主要介绍了全文信息检索的概念、应用领域、算法分类、技术难点和算法比较。及一款实现全文检索的数据结构和算法。 二、什么是全文数据库和全文信息检索 保存在数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C语言中对时间和日期的处理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10781267707850.html</link>
    <description><![CDATA[Chuck Allison 是盐湖城圣 Latter Day 教堂总部下耶稣教堂家族历史研究处的软件体系设计师。他拥有数学学士和数学硕士学位。他从1975年起开始编程，从1984年起他开始从事c语言的教学和开发]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用RSA算法防止非法注册机的制作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10771267707849.html</link>
    <description><![CDATA[一、RSA简介 RSA公开密钥密码系统是由R.Rivest，A.Shamir，L.Adleman提出的，不仅仅可用于数据的加密，也可用于数字签名，其算法如下： 1、取两个相近的大素数p、q； 2、计算n=p*q，z=(p-1)*(]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[clone模式在平衡排序二叉树实现中的应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10761267707842.html</link>
    <description><![CDATA[clone模式既prototype模式,是构造模式中的一种。其意图为:用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。 关键代码如下: virtual product * prototype::clone(){return new proto]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用SDK实现迷宫算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10751267707841.html</link>
    <description><![CDATA[我近来重看了数据结构的书,现在的教材还是使用C/C++的编写的算法,编译还是在console mode进行, 如果能把这些数据结构的算法使用在SDK上,那么就可以开发出 Windows 程序的算法程序提高学习]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC++设计语法编辑器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10741267707838.html</link>
    <description><![CDATA[语法编辑器是一个可以对程序设计语言进行语法编辑的文本编辑器，它对程序设计语言进行语法关键字进行加亮处理，如注释行、字符串、语法关键字、数字等，这样使得源程序更容易]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MIPS五级整数流水线模拟系统]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10731267707833.html</link>
    <description><![CDATA[1．引言： 1.1 实验要求： 1) 以交互输入方式或从文件读入方式（输入文件名后缀为.mips）输入一段MIPS汇编程序，选择不同执行模式，能给出该段程序在MIPS流水线上执行的流水线状态图，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C++对象计数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10721267707830.html</link>
    <description><![CDATA[要实现一个类的对象（实例）计数，即程序运行中此类有多少个对象存在，最容易的实现方法是使用静态数据成员。如下： class Widget {public: Widget() { ++count; } Widget(const Widget } ~Widget() {]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[马走日棋盘算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10711267707827.html</link>
    <description><![CDATA[描述 在给定大小的方格状棋盘上, 将棋子”马”放在指定的起始位置 , 棋子”马” 的走子的规则为必须在棋盘上走”日”字; 从棋子”马”的起始位置开始, 搜索出一条可行的路径, 使得]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现真正意义上的二维动态数组模板]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10701267707825.html</link>
    <description><![CDATA[我们可以通过动态数组的反例来确定动态数组应该具有哪些特性。大家都知道以下的方式是定义一个静态数组。int iCount[10];int iCount[10][10];从上面可以看出，定义了静态数组之后，无论程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C语言和Fortran语言]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10691267707824.html</link>
    <description><![CDATA[1. C++语言和Fortran语言的发展背景 在程序设计语言的发展过程中，FORTRAN 语言被认为是科学计算的专用语言。后来推出的FORTRAN90 和FORTRAN 95 版本也不例外，它们虽然可以完全实现C++语言同]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[猫吃老鼠的系统化算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10681267707819.html</link>
    <description><![CDATA[一、问题描述 现有n个老鼠围成一圆圈，有一只猫从任意位置开始吃老鼠，每次都隔一个老鼠吃，请给出最后一个老鼠的编号？题目要求是任给老鼠数n，输出猫最后吃的老鼠的编号。 二]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Tuples]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10671267707814.html</link>
    <description><![CDATA[1是Doug Gregor’s提出的多态函数的object wrappers。 2Jaakko Jrvis提出的tuple类型。 这两个都是直接来在Boost项目。（Boost项目是一个C++ libraries 集合）上次，我答应在这期和下一期将介绍这两个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种随机抽题的简单算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10661267707812.html</link>
    <description><![CDATA[随机抽题是很多有关考试软件经常会遇到的问题，设相关题库中有n道题，要从中抽取m ( m=n ) 道题，这要首先产生m个随机数。在C语言中，一般的做法是: int *intArray;int i;time_t t;intArray =]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于限次软件的制作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10651267707810.html</link>
    <description><![CDATA[现在有很多软件都推出了试用版，其中就有一些是限定软件的使用次数的，我用MFC也写了一个类似的程序。其实很简单，只要在程序初始化时（InitInstance()函数中），加上以下几句： u]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现文件加密功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10641267707808.html</link>
    <description><![CDATA[新建一个基于对话框的工程(起名为ecflie,然后去掉确定、取消、和系统添加的静态控件.在对话框添加三个按钮和两个编辑控件.给两个编辑控件分别关联变量CString m_path和CString m_pass,其中]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VC++实现数据加密]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10631267707806.html</link>
    <description><![CDATA[为了保证数据的安全性与完整性，常常要对数据进行加密，在数据传输过程进行数据加密可以防止中途非法截获。我们通常称原始数据叫做源文，用约定的加密算法进行加密处理。加密]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可定制大小和数量的随机数函数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10621267707806.html</link>
    <description><![CDATA[近日在做一个考试软件时，需要每次题目不同且题数可定制，在C++没找到适用函数，就顺手做了一个较通用的C++的随机函数扩展，请大家编程时参考。 void randEx(int MAX,int NUM) {int k=0;int]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[运用设计模式设计MIME编码类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10611267707800.html</link>
    <description><![CDATA[一、背景知识 MIME是一种Internet协议，全称为“Multipurpose Internet Mail Extensions” ，中文名称为“多用途互联网邮件扩展”。其实，它的应用并不局限于收发Internet邮件——它已经成为Inter]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在STL中处理对象指针]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10601267707795.html</link>
    <description><![CDATA[STL的容器类是针对对象来进行存储管理的。虽然没有明确的限制不能在STL的容器类中包含指针，STL也不在乎您存放在容器中的对象还是指针。但仔细考虑STL的初衷，在容器类中使用指针]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单模板概念]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10591267707793.html</link>
    <description><![CDATA[关于模板的理解都是断断续续的，于是准备系统的专研一遍，以为得花去一两天的时间，没想到，不到一个上午，就完成了计划，回头一看，模板也无非就如此而已吗！于是，这篇的题]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[析构函数的奥秘]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10581267707791.html</link>
    <description><![CDATA[请看如下一段代码： classA{ public: A(){pValue=newint[100];printf(ConstructorofA\n);} ~A(){delete[]pValue;printf(DeconstructorofA\n);} private: int*pValue; }; classB{ public: ~B(){printf(DeconstructorofB\n);} }; classC:publicB{]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从软件工程的角度看const的用法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10571267707789.html</link>
    <description><![CDATA[如果你开发的是一个简单的系统，如果你一个人就能记住所有变量的意义，如果你一个人就能控制所有变量的使用位置，如果你的软件发布后不需要更多的维护工作，那么你可以忘记c]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写一个STL中的CString类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10561267707788.html</link>
    <description><![CDATA[STL英文是StandardTemplateLibrary，也就是我们常说的C++标准模板库,。该标准库于1998年被正式纳入C++标准，给全世界的C++程序员带来了福音。最让我们兴奋的应该是它的跨平台性，使得你在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[小语言的词法分析程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10551267707786.html</link>
    <description><![CDATA[前些天写了个小语言的词法分析程序，因为前些天在VC知识库看到一个pascal词法分析的程序，觉得写得挺复杂的。其实词法分析程序的原理都是一样的，所以我想只要搞明白了简单的词法]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[再现Min和Max]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10541267707778.html</link>
    <description><![CDATA[原来的想法是从容器vector中移走最后一个元素，在单线程环境下，这段代码会运行的很好，但是，如果你在多线程使用这样的代码，往往会出现异常的，就算你的empty(),pop_bock()已经适当]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[A/B 向上取整的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10531267707776.html</link>
    <description><![CDATA[1.问题 A,B都是整数并且A1,B1求┌A/B┐即A/B的上取整。 当A/B整除，往上取整返回值为A/B。 当不整除，返回值是int(A/B)+1 这个算法的一个应用：如果你有一个动态增长的缓冲区，增长的步长]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使非MFC窗口程序的窗口回调过程成为C++类的成员]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10521267707774.html</link>
    <description><![CDATA[一、头文件 //wndpro.h#ifndef__WNDPROC_H__#define__WNDPROC_H__classCWndProc{protected: //保护的构造函数，必须由派生类来构造。 CWndProc(); virtual~CWndProc();protected: //窗口回调过程，基类作为纯虚函数没有]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C程序移植到VC开发环境下]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10511267707769.html</link>
    <description><![CDATA[摘要 针对C程序的特点，给出将之移植到VC集成环境下的技术，对一个常用程序集实施了大规模的改写，并提供了C++数组和矩阵模板类，对C程序进行面向对象的封装。 TheMigrationofOldCCode]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可用于数论计算的无符号大整数类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10501267707768.html</link>
    <description><![CDATA[前些日子，无意中访问到三思科学网，里面介绍了许多数论问题，这也是我儿时的爱好，于是就利用空闲时间编写了一个用于数论计算的无符号大整数类。 一、类的基本结构 ClassCUSupe]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在WTL中使用MD5加密法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10491267707765.html</link>
    <description><![CDATA[当你启动VC6.0后，File/New时，在Project属性页就能看到添加了一项ATL/WTLAppWizard。你可以直接把WTL的库文件(共16个.h文件)拷贝到vc的安装目录VC98/Include中，也可以放到你的工程文件夹中。 A]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于位操作的类CBitBuffer]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10481267707761.html</link>
    <description><![CDATA[一、类定义 classCBitBuffer {private:LONGLONG m_llLength; //缓存的大小，单位（位）。 BYTE*m_pBegin; //缓存的起始指针，字节指针，指向缓存的第一个字节。BYTE*m_pEnd; //缓存的末尾指针，字节指针，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用鼠标手势动作来发送命令]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10471267707755.html</link>
    <description><![CDATA[在一些比较不错的浏览器中,出现了一些新的功能,通过鼠标动作(也称鼠标手势MouseGestures)来发出一些命令,比如opera,myie2.一般是这样,先按住鼠标右键,不要松,然后画直线或者其他设定的路]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于拷贝构造函数和赋值运算符]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10461267707752.html</link>
    <description><![CDATA[以下讨论中将用到的例子: classCExample{public:CExample(){pBuffer=NULL;nSize=0;}~CExample(){deletepBuffer;}voidInit(intn){pBuffer=newchar[n];nSize=n;}private:char*pBuffer;//类的对象中包含指针,指向动态分配的内存资源]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VC中使用MATLAB C/C++函数库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10451267707749.html</link>
    <description><![CDATA[MATLAB广泛应用于线性代数、自动控制理论、数理统计、数字信号处理、时间序列分析、动态系统仿真等领域。因此如果在VC中对MATLAB进行调用将大大减少编程的工作量、保证程序的准确性]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[串行化(Serialization)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10441267707742.html</link>
    <description><![CDATA[串行化是微软提供的用于对对象进行文件I/O的一种机制，该机制在框架(Frame)/文档(Document)/视图(View)模式中得到了很好的应用。很多人对什么是串行化、怎么使对象具有串行化能力和如何]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用编程获取CD-ROM的驱动器盘符？]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10431267707742.html</link>
    <description><![CDATA[问题 最近我正在开发一个程序，任务是从CD-ROM上读取文件，如视频和音频文件。因为每一台机器上的情况都不一样。如何知道CD-ROM驱动器呢？ 解答 首先，一台机器可能有不止一个CD-R]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单的表达式求值]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10421267707740.html</link>
    <description><![CDATA[一直很想做个比Windows自带的高级一点的计算器，能将整个表达式输入，然后求值。这个程序要求读者具备编译原理的一些知识。举个实例来说明程序处理过程。假设要求值的表达式为：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[确定有穷自动机分析内核]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10411267707735.html</link>
    <description><![CDATA[分析器的基本构造 脚本Scripts进入分析内核ParsingKernel，分析内核根据DFA规则作词法分析，生成单词序列WordsSequence。 其中的DFARules其实就是DFA中的状态转换规则。分析内核在工作时需要查]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[委托、信号和消息反馈的模板实现技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10401267707729.html</link>
    <description><![CDATA[1继承+多态 乍一看是理所当然的选择，库中的类把响应处理函数设置为虚函数，客户程序可以继承这个类并且重载响应函数。以某个Socket类为例，可以提供一个OnRecv函数用来响应网络数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[按照类型名称动态创建对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10391267707729.html</link>
    <description><![CDATA[1引言 我的一个实际项目中，由于希望通过一致的接口控制各种型号的设备，并且可以方便的随时扩充，以便将来支持更多的型号。因此，必须在运行时指定设备的型号。 为了使应用程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Boost中应用的泛型编程技术]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10381267707725.html</link>
    <description><![CDATA[1、何谓泛型编程 泛型编程关注于产生通用的软件组件，让这些组件在不同的应用场合都能很容易地重用。在C++中，类模板和函数模板是进行泛型编程极为有效的机制。有了这两大利器，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C语言中trim的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10371267707722.html</link>
    <description><![CDATA[说明 1.seps是需要去除的字符数组，可以有几个字符，也可以一个。这里是空格，最常用的。 2.参数也很简单，第一个是结果数组指针，第二个是原字符数组指针，第三个是需要去掉的字]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为什么要在operator=中返回*this的引用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10361267707720.html</link>
    <description><![CDATA[在很多书籍和文章中，很多次提到在对赋值操作符（=）进行重载的时候，要返回对目的（调用）对象实例(*this)的引用。其中不免有这样的论断：一定要返回对调用对象的引用；返回对调]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在派生类中的隐藏基类的虚拟重载函数？]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10351267707716.html</link>
    <description><![CDATA[我创建了一个类，基类中有虚拟重载函数。我想在派生类中改写基类中的虚拟重载函数。代码如下： #includeiostream.hclassB{private: intnNumber;public: virtualvoidtest(){ coutB::test()\n; } virtualvoidtest]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DES算法的介绍和实现(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10341267707715.html</link>
    <description><![CDATA[3.1实现的介绍 利用算法核心代码封装的接口函数笔者编写了一个针对文本文件的加密解密工具.下文叙述了在实践时的一些心得体会,希望能对读者有所裨益. 笔者选择把密文以16进制的形]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IBM的MARS加密算法实现(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10331267707712.html</link>
    <description><![CDATA[IBM的MARS加密算法实现(下) 作者:西安吴真 2.3密文解密 用于密文解密的40个子密钥的生成和明文加密时的40个子密钥的生成方法相同. 2.3.1第一步前向混合 输入的128位密文分成四块D[0],D[1]]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IBM的MARS加密算法实现(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10321267707709.html</link>
    <description><![CDATA[一、背景知识 1977年颁布的数据加密标准DES算法。其56位长的密码空间在芯片技术和计算技术高速发展的今天，越来越不适应安全需求。1997年9月美国国家标准技术研究所(NIST)提出了征求]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DES算法的介绍和实现(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10311267707703.html</link>
    <description><![CDATA[一.DES算法介绍 DES(DataEncryptionStandard)算法，于1977年得到美国政府的正式许可，是一种用56位密钥来加密64位数据的方法。虽然56位密钥的DES算法已经风光不在,而且常有用Des加密的明文被破]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C++指针使用方法解惑]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10301267707702.html</link>
    <description><![CDATA[在下列函数声明中，为什么要同时使用*和符号？以及什么场合使用这种声明方式? voidfunc1(MYCLASS*pBuildingElement); 论坛中经常有人问到这样的问题。本文试图通过一些实际的指针使用经验来]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Gost加密算法的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10291267707699.html</link>
    <description><![CDATA[一.Gost算法 Gost(GosudarstvennyiStandard)算法是一种由前苏联设计的类似DES算法的分组密码算法.她是一个64位分组及256位密钥的采用32轮简单迭代型加密算法.DES算法中采用的是56位长密钥,在密码]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[超频软件原理探析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10281267707694.html</link>
    <description><![CDATA[ABSTRACT: Almostalltheover-clocksoftwareprovidedbymainboardmanufactoryisbasedontheclockgeneratorwhichisthebasichardwareonmainboard.AndalmostallclockgeneratorsareI2Cdevices.ThisdocumentfocusonhowtheI2Cdeviceworksandthebasictheoryofover-clocks]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ACE自适配通信环境]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10271267707691.html</link>
    <description><![CDATA[一、ACE综述 ACE自适配通信环境（ADAPTIVECommunicationEnvironment）是可自由使用、开放源码的面向对象（OO）构架（framework），它实现了许多用于并发通信软件的核心模式。ACE提供了一组丰富的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[内联汇编基础知识]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10261267707686.html</link>
    <description><![CDATA[一、内联汇编简述 VisualC++6.0编译器下，内联汇编可以使用所有的Intel486处理器指令集。而且可以对目标处理器建立起伪指令来实现附加指令功能。内联汇编可以使用MASM编译器所允许的表]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[命名空间的概念]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10251267707685.html</link>
    <description><![CDATA[很多初学C++的人，对于C++中的一些基本的但又不常用的概念感到模糊，命名空间(namespace)就是这样一个概念。 C++中采用的是单一的全局变量命名空间。在这单一的空间中，如果有两个变]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[捕获数学函数异常]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10241267707678.html</link>
    <description><![CDATA[假如我们要用一个数学函数，比如反正弦函数asin(x)，如果变元x的值是由用户提供或某个中间结果，则在调用时必须判断其取值范围是合理，是否满|x|=1？即 if(fabs(x)=1) y=asin(x);else y=…对]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于内联汇编的几个技巧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10231267707677.html</link>
    <description><![CDATA[1．内联汇编嵌入VC语句： 在VC中内联汇编非常方便,只需要按照如下格式 __asm{ //汇编语句 } 请看如下示例代码 voidCAlcmemDlg::OnButton3(){DWORDd=(m_size*1024*1024)/sizeof(DWORD);DWORD*p=(DWORD*)m_p;DWORDs;m_]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MMX指令集在C++中的使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10221267707674.html</link>
    <description><![CDATA[一、内联汇编的一般原则： 1、自由使用通用寄存器；（EAX,EBX,ECX和EDX） 2、其它寄存器利用堆栈保留，使用，最后恢复； 一般的像下面这样： asm{pushebppushesp……….//使用EBP和ESPpopesppo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[const使用详解]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10211267707659.html</link>
    <description><![CDATA[关于C++中的const关键字的用法非常灵活，而使用const将大大改善程序的健壮性，现将本人的一些体会总结如下，期望对大家有所帮助： 一const基础 如果const关键字不涉及到指针，我们很好]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Pointers 与 References（一）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10201267707654.html</link>
    <description><![CDATA[我认为最简单的方法解释Pointers和References就是举例证明了。首先让我们看一些表达式： x=1; 在表达式中，当你使用一个变量，特别是一个字母或标记符来存储数据。在编程过程中，上面]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[专门处理C++异常的类和例子]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10191267707652.html</link>
    <description><![CDATA[在默认情况下，CExceptionLogger产生一个日志文件，名字为：nameofexe.exception，这里的nameofexe是exe文件的名字。如果以ASCII模式生成CExceptionLogger，则日志文件为一ASCII文件；如果以UNICODE模式生]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于构造单实例类的一个问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10181267707645.html</link>
    <description><![CDATA[最近一个朋友问我创建单实例的一个问题，他写了一个C++单实例类CSingleton，其构造函数也是private类型。这个类有一个静态函数：GetInstance，它返回单实例类对象的引用，只要用这个函数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模板友元化]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10171267707643.html</link>
    <description><![CDATA[假设我们有一个函数模板，可以调用其所操作的对象的SomethingPrivate()方法。特别地，考虑boost::checked_delete()函数模板，它用以删除指定的对象——在它的实现中，会调用该对象的析构函数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最简单分形图形实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10161267707640.html</link>
    <description><![CDATA[大家在C/C++学习时都会遇到递归，课本上以汗诺塔为例进行讲解，然后大家都希望自己找到一个递归的实例。本文以一个最简单的分形图形来讲解递归的实现过程。 先来看看绘制这个分]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于对象生命历程的会话]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10151267707634.html</link>
    <description><![CDATA[以取得这篇文章的版权，所以这篇中译文的版权不应归我所有，而且我未从中获得任何利益！而且，我对原作者及其版权所有者的敬仰有如涛涛江水，所以我绝没有侵犯原作者的任何意]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C++中类的数据成员的安全隐患]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10141267707630.html</link>
    <description><![CDATA[在任何一本关于C++语言程序设计的书中都有类似于如下的描述： 在一个类中，C++用三个关键词设置访问界限：public,private和protected。它们决定了跟在他们后面的标识符的被使用情况：]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据前序和中序序列生成二叉树]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10131267707627.html</link>
    <description><![CDATA[//BTree3.cpp:Definestheentrypointfortheconsoleapplication.//AUTHOR: SongKe//EMAIL:kesongemini@vip.163.com//HOMEPAGE:http://kesongemini.diy.163.com//QQ:123588179//COMPANY:www.etonglian.com//AIM:programmedbySongKe2002/12/16nightathome//forSist]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE终结者]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10121267707623.html</link>
    <description><![CDATA[最近看了VC知识库在线杂志第十二期中，有一篇突发灵感也想写一个黑客程序。经过了几天的搜集资料和试验终于写出了一个可以自动关闭IE和windows中自带游戏的小程序和大家分享，希望]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[隐藏你的鼠标]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10111267707622.html</link>
    <description><![CDATA[一、建立一个单文档的应用程序框架 二、为隐藏主窗口，将OnCreate删除。 并在App类里修改m_pMainWnd指向ShowWindow(SW_HIDE) 三、现在在mainframe的实现文件里添加如下内容： POINTmp,cursorNew;//CMa]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MFC CObject浅析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10101267707620.html</link>
    <description><![CDATA[一.CObject简要声明 classCObject{public:virtualCRuntimeClass*GetRuntimeClass()const;virtual~CObject();void*PASCALoperatornew(size_tnSize);void*PASCALoperatornew(size_t,void*p);voidPASCALoperatordelete(void*p);voidPASCALoperatordelete(voi]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改QQ的程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10091267707616.html</link>
    <description><![CDATA[最近一网友要戒QQ,要我写个程序帮他把QQ戒了,昨天一天搞定了,里面有点有用的东西拿出来如果觉得我很菜不要骂我:E 主要思路: FindWindow-发送消息查看消息 修改QQ的Button，Static，Edit控]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC/Delphi工程解析器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10081267707614.html</link>
    <description><![CDATA[工程的产生要归结为本人所处的工作角色的原因。由于本人所在部门为SQA部门，为了推动测试工作的有效和实质性进展，本人想自己开发一个适合于本项目组的测试工具。加上本人在实]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Pointers 与 References（四）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10071267707611.html</link>
    <description><![CDATA[16.7从函数中返回指针和/或引用 当声明一个函数，你必须按类型规则声明，并返回它。比如： intMyFunc(); //返回int类型SOMETYPEMyFunc();//返回SOMETYPE类型int*MyFunc(); //返回int类型指针SOMETYPE*My]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Pointers 与 References（三）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10061267707609.html</link>
    <description><![CDATA[16.5空指针 还记得可以怎样指定一个字符或串为null吗?如果记不得了,看看这里吧。串中的null字符表示串的结尾,但是,如果一个指针被指定到null指针,则它什么也没有指向。空指针常常用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Pointers 与 References（二）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10051267707604.html</link>
    <description><![CDATA[16.4赋值pointers和references. 就像你看到使用“寻址”操作符的语法一样，一个指针被赋值得到“寻址”操作符的返回值。因为“寻址”操作符的返回值就是一个指针，所有事情 都考虑过了]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入分析MFC中的CArray类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10041267707600.html</link>
    <description><![CDATA[我们在使用vc进行比较复杂的编程时，经常需要用到复杂的数组结构，并希望能实现动态管理。由于C++并不支持动态数组，MFC提供了一个CArray类来实现动态数组的功能。有效的使用CArra]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在运行时确定对象类型（RTTI）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10031267707599.html</link>
    <description><![CDATA[RTTI是“RuntimeTypeInformation”的缩写，意思是：运行时类型信息。它提供了运行时确定对象类型的方法。本文将简略介绍RTTI的一些背景知识、描述RTTI的概念，并通过具体例子和代码介绍什]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[UNICODE 编程入门]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10021267707592.html</link>
    <description><![CDATA[如果你编写的程序是针对非英语国家的用户，如中国、日本、东欧和中东地区，那么你一定要熟悉UNICODE字符集。尤其是用VisualC++/MFC编写针对上述国家和地区的用户的程序时，如果你想让]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由汇编内核的MD5算法编写谈代码优化]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10011267707592.html</link>
    <description><![CDATA[开始我们做个实验，先打开两个文档附带的程序，一个工程是MD5C,一个工程是MD5ASM,其中MD5C是从VCKBASE下载的md5算法的标准C语言原代码，MD5ASM是我修改后的md5算法原代码。我给这两个工程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用vc.net实现记录开关机时间的程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/10001267707587.html</link>
    <description><![CDATA[虽然现在电脑大幅降价，但是多人公用一台电脑的情况仍然不少，特别是学生一族。有时候自己由于某种需要要知道别人什么时候使用这台电脑，那该怎么办呢？去网上找一个？但是不]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DES算法及其在VC++6.0下的实现(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9991267707576.html</link>
    <description><![CDATA[在中主要介绍了DES算法的基本原理，下面让我们继续： 二．子密钥的生成 64比特的密钥生成16个48比特的子密钥。其生成过程见图： 子密钥生成过程具体解释如下： 64比特的密钥K，经过]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OLE字符串]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9981267707576.html</link>
    <description><![CDATA[一、概述 32位宽字符串，前面32位为长度,尾部以0结束 二、相关定义 BSTR(又称Basic类型字符串) LPOLESTR 相关宏定义: typedefunsignedshortwchar_t;(unsignedshort为两字节)typedefwchar_tWCHAR;typedefWCHAROLECH]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DES算法及其在VC++6.0下的实现(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9971267707573.html</link>
    <description><![CDATA[一．加密 DES算法处理的数据对象是一组64比特的明文串。设该明文串为m=m1m2…m64(mi=0或1)。明文串经过64比特的密钥K来加密，最后生成长度为64比特的密文E。其加密过程图示如下： DES算法]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何实现三态选择树]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9961267707569.html</link>
    <description><![CDATA[有时候我们经常需要实现树的多态选择，本文就介绍一种三态选择树的具体实现。 步骤一：生成一个对话框工程。 步骤二：添加树控件，设置所需的属性。 步骤三：做三态选择框图标]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态真彩工具栏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9951267707568.html</link>
    <description><![CDATA[与VCKBASE接触良久，从来都是贪婪的从中掘取好用的东东，却没想过把自己的东西拿出来与人共享，很不好意思。 自从我的RangerChat点对点聊天工具在VCKBASE上发表以来收到众多朋友的来信]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[新加坡程序员考题一则及分析]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9941267707567.html</link>
    <description><![CDATA[你必须创建一个功能强大的串处理类，String，这个类必须从C++中标准的string类派生，必须在该派生类中添加两个成员函数： 1、模式识别函数，返回某个串中指定串模式的出现次数。该函]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可以替代系统记事本的程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9931267707564.html</link>
    <description><![CDATA[本人在网上搜VC制作记事本的源代码时，发现没有VC做的，看来不能偷懒，只能自己来做。至于为什么非得自己做个替代系统的记事本，待我做完再说。本人模仿的是Win2K下的记事本。 首]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个好用的DBGRID]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9921267707557.html</link>
    <description><![CDATA[一、引言 在用vc开发关于数据库的项目时，通常我们只好用微软的DBGRID作为数据库表格控件，其实微软的DBGRID并不好用，想找一份好的帮助文档都找不到，并且界面并不友好，比起C++B]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[支持数据项查找功能的树控制(CTreeCtrl)类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9911267707555.html</link>
    <description><![CDATA[一、树控制（CTreeControl） 树控制用于显示具有一定层次结构的数据项。很多应用程序都使用该控件，例如资源管理器中的磁盘目录等。 树控制中有根数据项(rootitem)，根数据项下包含各]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[告别图标失真的烦恼]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9901267707549.html</link>
    <description><![CDATA[自从和VC知识库认识之后我认识了不少朋友，有的象我一样走着苦苦探索的道路。其中有很多朋友问我在VC中如何保证256色以上的图标加载后不失真。根据这些提问我也曾经到各个站点上]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[按钮控件的使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9891267707542.html</link>
    <description><![CDATA[最近有不少朋友发信到我的邮箱，其中有高手也有菜鸟，也许他们问的问题我还不能一一解答，但是他们的来信的确让我感受到极大的鼓舞。今天忙里偷闲，翻译了一片外国的文章，献]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在C++中实现属性]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9881267707537.html</link>
    <description><![CDATA[本文试着在C++中不使用任何扩展技术模拟C＃（或其他语言）中的属性特征。大多数在C++实现属性的库和编译器使用扩展技术，如ManagedC++或C++Builder，或者他们使用如通常函数的set和get方]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何锁定 ListView 的栏目头宽度]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9871267707532.html</link>
    <description><![CDATA[Windows应用程序的GUI标准明确规定了ListView栏目头(ColumnHeader)的宽度必须是可调整的，这本来是专门为用户考虑而设计的控制特性，可是偏偏就有用户拒绝这样的特性。作为技术人员，用户]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带文字的进度条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9861267707531.html</link>
    <description><![CDATA[我们经常会看到带有文字的进度条，它能给人一种直观的概念。在VC中也有进度条的控件，但它不能显示文字。今有一CProgressCtrl类的派生类CTextProgressCtrl就有完成这样的工作。两种控件运]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三态选择树实现终结者]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9851267707527.html</link>
    <description><![CDATA[我们经常需要实现树的多态选择，如上图所示，当全部子节点选中的情况下，当前节点才被选中（如图示[荆门市]节点），当子节点部分选中时，当前节点处于第三态（如图示[湖北省]节]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让CButtonST 类支持鼠标掠过时发声]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9841267707524.html</link>
    <description><![CDATA[首先，建立一个基于对话框的工程test，然后把原BCMenu.cpp,BCMenu.h,BtnST.cpp,BtnST.h四个文件加入到工程中。 接下来我们开始改造CButtonST类。 1．打开CButtonST类的头文件BtnST.h在它的开始部分加]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何定制对话框系统菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9831267707523.html</link>
    <description><![CDATA[背景 系统菜单是每个Windows程序的标准特性。通常系统菜单由Windows系统来管理，所以我们平时编成时很少去碰它。但是，有的时候，我们确实想定制自己的系统菜单项。这样就涉及到定]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似EXCEL的开发库（更新）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9821267707517.html</link>
    <description><![CDATA[这篇文章中的例子程序已经有最新版了，界面截图和文档内容也已更新。最新程序请从本文上方的链接处下载。 20030907更新内容： 1）开始在程序里支持图表显示 2）修改了在打印部分的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可以显示多行文字的工具条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9811267707517.html</link>
    <description><![CDATA[例子程序运行画面 CToolBar不支持多行文字，本文将通过一个定制的MFC/C++类CMTToolBar实现在工具条中显示多行文字。其思路是先把文字变成位图，再替换原来的工具条位图，达到显示多行文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用钩子实现菜单阴影效果]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9801267707514.html</link>
    <description><![CDATA[许有很多人曾和我一样,对OfficeXP里面的菜单的阴影效果羡慕不已,它不需要在WindowsXP中就可以在菜单后面显示阴影,当然在WindowsXP中,已经完全支持菜单阴影了。虽然我们不一定很有必要自]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CTreeCtrl类的递归使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9791267707510.html</link>
    <description><![CDATA[CTreeCtrl是可是化编程中很实用的一个类，可以用于目录结构、层次结构、属性结构,尤其是在显示文件目录结构时更是应用广泛。看了第20期北京林业大学的李少杰朋友的一篇遍历文件夹]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WTL字体类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9781267707508.html</link>
    <description><![CDATA[使用这个类可以很容易在窗口或对话框中加入各种额外的字体。我们可以通过CWindowFont类建立一个基于当前窗口的新字体。你所要做的就是设置字体属性（加重、斜体等），来美化你的程]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似EXCEL的报表类库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9771267707506.html</link>
    <description><![CDATA[此代码是一个电子表格类库，还不是很完善，希望大家给多点意见和建议，我会尽快把相应功能丰富进去的。我的信箱：zzxiong@citiz.net 现在这个sample不是很完整，我也正在完善中，相应]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现类似VC中可设断点的编辑窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9761267707500.html</link>
    <description><![CDATA[想做一个跟踪调试工具，于是到网上找类似VC可设置断点的EditView，可惜没找到（呵呵，俺E文不好，没去国外站点找）。那就自己做一个吧！！ 唉！！为了这个小东西俺可是走了不少弯]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个实用的CToolBar扩展类CToolBarEx]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9751267707498.html</link>
    <description><![CDATA[我们知道，程序中的工具条是在CMainFrame中生成的，采用的类是CToolBar，使用起来很复杂。为此，对CToolBar的常用功能进行封装，生成了它的一个继承类CToolBarEx，大大简化了操作。编译环]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样实现XP风格按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9741267707496.html</link>
    <description><![CDATA[在vc6下面怎样实现具有xp风格的按钮？我这里介绍一种简单的方法。我们需要用到两个类，一个是CButtonST,另一个是CWinXpButtonST.这两个类一个是按钮类，另一个是Xp风格按钮类，大家可以从]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[增强GridCtrl]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9731267707495.html</link>
    <description><![CDATA[在一个数据录入界面中有的数据项需要编辑录入，有的项需要选择录入，虽说有几个用ListCtrl做的扩展也基本能满足要求，总觉不好用，猛然发现有人用GridCtrl做的扩展，正合吾意。经过]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[树控件的应用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9721267707492.html</link>
    <description><![CDATA[在去年已经发表一篇关于使用数据库内记录的内容，来创建树控件的节点的文章--《按数据库记录构建树控件》()， 由于这篇文件里，对于点击树的某一节点后，显示当前节点的子节点的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[树视控件在多文档中的使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9711267707490.html</link>
    <description><![CDATA[本文中主要讲到如何在多文档中加入一个ControlBar,以及如何在ControlBar中加入一个树控方法。这也是软件系统中常用的一种界面，希望能对大家有所帮助。 本例的运行结果如下： 首先，新]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可设置单元格颜色的ClistCtrl类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9701267707489.html</link>
    <description><![CDATA[一、说明： CListCtrl控件简单易用，美中不足的是不能设置单元格的颜色，作者试着扩展了CListCtrl类，提供了一个可设置单元格颜色的函数, SetItemColor(intnItem,intnSubItem,COLORREFclrText,COLORREF]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在List Control中实现列表项目的上下移动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9691267707488.html</link>
    <description><![CDATA[前言 ListControl是VisualC++的一个通用控件，在很多程序中都有对它的使用，比如Windows2000任务管理器的进程显示，就是一个报表样式的ListControl。有时候，我们编程不仅需要使用ListControl来]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在MDI程序中实现类似WPS2000的文件切换标签]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9681267707483.html</link>
    <description><![CDATA[用过WPS2000的朋友，肯定对其文件切换功能有很深的印象。当打开多个文件时，他可以使我们快速的切换到指定的文件。本文将详细地说明如何在自己的MDI程序中加入这样一个标签。图一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC控件 TreeCtrl 与 ListCtrl 演示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9671267707483.html</link>
    <description><![CDATA[这个例子类似于Windows的资源管理器,程序运行界面如图一所示： 主要用到的类有： CListCtrl,CTreeCtrl,CImageList,CFileFind和函数SHGetFileInfo() 简述步骤如下： 1、增加TreeCtrl的TVS_HASBUTTONS，TVS_HAS]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[属性列表的开发]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9661267707479.html</link>
    <description><![CDATA[最近开发一个软件时遇到属性编辑的问题，本来想用列表控件来代替，但是发现列表控件有很多缺陷，不是太好用。属性控件不支持编辑与下拉列表功能，这个控件已经内置了这二个功]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为对话框中的控件增加提示的简单方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9651267707474.html</link>
    <description><![CDATA[我学VC从VC知识库中得到不少好处,相来都是一些热心朋友们的帮助,在此表示感谢!本工程可分四步： 1、建一个基于对话框的程序TipTest,在CTipTestDlg中增加成员变量:CToolTipCtrlm_tip[2],CWnd*m_p]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++工程中加入 SplashScreen 原理释解]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9641267707470.html</link>
    <description><![CDATA[本文旨在剖析VC++工程中加入SplashScreen的原理，并给出在VC++MFC(exe)工程中加入SplashScreen的步骤。 关键字SplashScreen，原理 环境：Windows98SE/2000，VC++6.0 SplashScreen-我们使用Word之类的软件在启动]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似 MSN 带转义字符的信息发送框的制作(下)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9631267707469.html</link>
    <description><![CDATA[一、实现了上回说到的多功能文本框之后，接下去的任务就是做一个表情符号选择器。CIconPicker。 说明：本来是想实现图标选择的，但是后来有需要改成了位图选择器，但是类名没有改]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似 MSN 信息发送框的制作(上)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9621267707464.html</link>
    <description><![CDATA[一、引言 用MSN和QQ等聊天的时候,当用户输入特定意义的字符串时,系统回自动用一张小图片替代.比如输入:)系统会用一个小笑脸代替。我要实现的就是这样一个信息输入框。这个信息输]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[多功能标签CLabelEx]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9611267707460.html</link>
    <description><![CDATA[做用户界面的时候经常要用到一些静态文本控件，显示一些文字信息，但是MFC提供的CStatic类的功能过于简单，无法满足高级需求。为此我从CStatic派生了一个类CLabelEx，扩展了CStatic。第一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一步步制作真彩工具条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9601267707458.html</link>
    <description><![CDATA[一直在寻找制作一个24bit及以上真彩工具条的简单有效方法，在各种VC站点都找到了很多有关这方面的文章和介绍，但是都存在一个不足的地方，介绍的不够详细，对初学者来说有点难度]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[增加状态栏按钮及其它]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9591267707453.html</link>
    <description><![CDATA[早期在Windows3.1和Windows98时代，你只需获取活动窗口，并且简简单单地发送一条WM_CLOSE消息即可： PostMessage(GetActiveWindow(),WM_CLOSE,0,0); 是不是看来很简单？但在Windows2000下，这个方法不再有]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[增强Edit控件为日期输入控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9581267707453.html</link>
    <description><![CDATA[MFC所提供的组件已经可以完成很多功能了，但有时候我们还需要这些控件按我们自己的意图去处理。比如EDIT控件，虽然我们可以设置EDIT控件为只能接受数字属性，但如果我们还需要它]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[电子八段管的仿真控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9571267707446.html</link>
    <description><![CDATA[经过了一个学期的考研生活，已经有好几个月没有看程序了，手都痒得很。终于考完了试，可以做点小玩意了。下个学期毕设，可能是要用PIC单片机做模拟系统控制程序。电压，电流采]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用键盘操作静态链接打开应用程序中的URLs]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9561267707440.html</link>
    <description><![CDATA[这几年我一直在公司的商业程序中使用你的CStaticLink类，在1998年MSJ三月刊里，你示范了如何给超链接添加手型光标，但现在我想以另一种方式使用这个类。在微软的IE浏览器中，可以用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完美实现真彩自绘菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9551267707438.html</link>
    <description><![CDATA[一、提出问题 在VCKBASE上读到《自绘菜单的实现》［作者：querw］。应用的我自己的正在进行的工程后发现效果不错，可是有存在许多问题。整个类的设计方面存在很多缺陷（先天，后天]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建客户区窗口，列表框之间项的拖拽操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9541267707435.html</link>
    <description><![CDATA[在发送绘画(paint)消息时，系统是如何识别某个窗口的客户区或非客户区？当我用::CreateWindow创建窗口时，如何指定客户区矩形？ VipulSolanki 在创建窗口时不必指定客户区，当收到WM_NCCAL]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MFC 应用程序中的菜单提示信息]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9531267707430.html</link>
    <description><![CDATA[我正在做一个历时很久的项目。出于某些原因，项目启动之初我们实现了自己的弹出式菜单。当工具提示信息出现之后，我们将这个功能引入了我们自己的菜单，以便当用户将鼠标停留]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C-Visual Toolbar 1.0]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9521267707429.html</link>
    <description><![CDATA[C-VisualToolbar1.0的功能可以用VisualToolbar1.5的功能来描述，以下是引用VisualToolbar1.5的功能来介绍C-VisualToolbar1.0的功能。“对VisualC++和Delphi的程序员来说，设计一个漂亮的真彩色工具栏是一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[位图进度条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9511267707426.html</link>
    <description><![CDATA[这个类的名字叫CBmpProgCtrl，继承于CStatic，使用方法如下。 1、首先要将BmpProgCtrl.h和BmpProgCtrl.cpp添加到工程中。 2、导入两幅位图，作为前景和背景。资源标识分别为IDB_FORE和IDB_BACK. 3、在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自绘菜单的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9501267707423.html</link>
    <description><![CDATA[在VCKBASE上读到《一种漂亮的自绘菜单》［作者：郑恒(lbird)］。应用到我的工程里后发现：文章中提到的效果能很好的实现。但是有一点不方便：需要映射WM_DRAWITEM和WM_MEASUREITEM消息才能]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Open的使用问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9491267707417.html</link>
    <description><![CDATA[使用CAnimateCtrl::Open(LPCTSTRlpszFileName)时，参数lpszFileName是个字符串，表示AVI文件名。因此在分发应用程序时，除了分发可执行程序外，还必须单独分发AVI文件。是否有办法从资源中得到A]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[电子式时钟]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9481267707414.html</link>
    <description><![CDATA[首先建立一个基于对话框的工程，导入数码位图资源，直接在对话框类CMy2Dlg中添加类mytime 程序中的mytime类主要提供两个函数接口：一个是set()用来设置显示位置；一个是myfun()用来设置显]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完善 CPopupText 类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9471267707412.html</link>
    <description><![CDATA[“介绍一个有Toolbar功能的可重用类CPopupText”。这篇文章的内容是关于在一个列表框中，如果列表框中数据项的文字长度超过了列表框本身的宽度，则会显示一个类似ToolTips的弹出提示，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual C++环境下DBGrid控件的使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9461267707410.html</link>
    <description><![CDATA[DBGrid数据表格控件以其短小精悍而深受大家的喜爱,但其如何在VisualC++中使用却很少有文章提及,本文将VC下使用DBGrid的具体步骤简要地介绍给大家。 一.前期准备 为了实现DBGrid控件的自动]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[黑客攻击手段之偷梁换柱]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9451267707410.html</link>
    <description><![CDATA[Internet的发展，带动了IT界的一次大飞跃，黑客的活动也随之日益猖獗，攻击手法不断变化。各种黑客程序也是层出不穷，木马程序更是花样百出。如：监视键盘按键、替换登录程序等，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让工具条显示256色图像]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9441267707406.html</link>
    <description><![CDATA[问题： 论坛中有很多人提出：基于Windows的程序如资源管理器（Explorer.exe），IE等都能显示出漂亮的工具栏图像和图标。但是，用MFC开发的应用程序一般都只能显示16色的工具栏图像和列]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[定制编辑框的上下文菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9431267707401.html</link>
    <description><![CDATA[上下文菜单的应用在基于Windows的应用程序中使用得越来越广泛。本文针对WM_INITMENUPOPUP消息的处理机制谈谈如何在编辑框控制的上下文菜单上添加自己的菜单项。 刚开始的时候常常碰到]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改一个完全颜色的CListCtrl类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9421267707398.html</link>
    <description><![CDATA[在使用CListCtrl控件的过程中，我们会发现使用及其不方便，特别是在使用“report显示模式时，想给指定条目添加背景颜色，CListCtrl控件所提供的设置颜色函数只能使得控件的界面变得好]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在你的程序中如何使用CButtonST类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9411267707397.html</link>
    <description><![CDATA[首先在你的工程中加入如下文件： BtnST.hBtnST.cpp从v3.5版本开始，CButtonST支持使用BCMenu类创建菜单。为了能够使用BCMenu，你必须在BtnST.h中加入下面二行： #defineBTNST_USE_BCMENU#includeBCMenu.h当]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC++创建自定义向导程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9401267707394.html</link>
    <description><![CDATA[向导是一种用来简化用户操作的程序。在Microsoft的所有产品中都存在向导，如Office2000中的Web页向导就是一个十分典型的向导（如下图所示），还有常用的VC++向导。 一个基本的向导程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[树型控件拖动的完美实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9391267707391.html</link>
    <description><![CDATA[树型控件用来显示具有一定层次结构的数据项时方便、直观，被广泛地应用在各种软件中，如资源管理器中的磁盘目录就用的是树型控件，我们在编程中也会经常用到，但MFC中提供的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自定义 CRichEditCtrl 控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9381267707387.html</link>
    <description><![CDATA[在VC中提供了两种很方便的编辑控件（CEdit和CRichEditCtrl），一般来说这两种控件已经满足了我们大部分的需要，不过只有CEdit控件能响应我们鼠标右键消息，通过右键我们很容易的操作我]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何设置ListView控件的完全行(Full Row)选项]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9371267707384.html</link>
    <description><![CDATA[从Windows95开始，微软增加了新的通用控件。其中最为流行的控件之一便是ListView，在资源管理器和桌面上你都能看到ListView的应用。 这个控件支持几种模式或视图,它包括大图标、小图标]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Office 2000 风格的停泊、智能型菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9361267707383.html</link>
    <description><![CDATA[由于原文作者所提供例子代码需使用附带RC资源，经本人使用后觉得不够通用，故将部分源码修改并将文章翻译。文中现在所附例子为我最近所作一抓图程序的界面部分。不光Office2000智]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于CEdit控件的透明]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9351267707381.html</link>
    <description><![CDATA[前几天和风在这里讨论关于CEdit控件的透明问题。主要的目的就是要做一个有图形背景的Edit控件，经过一番努，终于做出了一个还算象样的Edit控件。 做一个透明的Edit控件的主要问题是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何enable/disable菜单项]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9341267707379.html</link>
    <description><![CDATA[这个问题在以前的知识库中出现过多次，许多人问及在MFC应用程序中enable或disable菜单的问题，在主菜单中调用CMenu::EnableMenuItem不起作用......如何disable菜单项？ 根据以往的经验，要解决]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态菜单项、状态条提示、工具条提示问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9331267707377.html</link>
    <description><![CDATA[一个应用程序想要动态改变菜单项。使用CCmdUI::SetText(MenuText)可以改变菜单文本，但是如何动态改变工具条和状态条的文本呢？ 有几种策略，避免，欺骗，面对...... 首先，避免：为什么]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[按数据库记录构建树控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9321267707371.html</link>
    <description><![CDATA[简介: 将树中的每一个项目作为数据库中的一条记录(ACCESS2000),将程序启动时,对数据库进行读操作;创建树的各个项目时,是对数据库进行读操作,每次的读取,都是在可是查寻符合条件的记录]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[树控件的双击响应]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9311267707368.html</link>
    <description><![CDATA[ClassWizard为CTreeCtrl（树控件）添加的NM_DBLCLK（双击）消息的响应函数中带有一个NMHDR*型指针形参： OnDblClkTree(NMHDR*pNMHDR,LRESULT*pResult) 这个陌生的指针类型常使初用树控件的编程者陷入迷茫]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++中轻松实现滑动控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9301267707367.html</link>
    <description><![CDATA[滑动控件是Windows中最常用的控件之一。一般而言它是由一个滑动条，一个滑块和可选的刻度组成，用户可以通过移动滑块在相应的控件中显示对应的值。通常，在滑动控件附近一定有标]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入浅出 CPropertySheet]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9291267707366.html</link>
    <description><![CDATA[为了最大限度的发挥属性页的效用，首先让我们先从CPropertySheet继承一个新类，取名为CMyPropSheet. 接着便可以进行下面的各种操作: 一、隐藏属性页默认按钮 隐藏掉Apply应用按钮: propshee]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在ListBox中选择背景位图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9281267707361.html</link>
    <description><![CDATA[一、基本原理： 构造一个LISTBOX的子类CMYLISTBOX，在刷新背底的时候，选择背景位图。此时需要设置背景模式为透明，当你在其上写入文字的时候，文字背底就不会变白色，而是背景色；]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在对话框中加入属性页]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9271267707359.html</link>
    <description><![CDATA[在对话框上放置一个TabControl的控件，再在对话框上放置所需的控件（本例放置了2个按钮，试图在每个标签中显示一个）。然后利用ClassWizard来为TabControl控件创建一个控件变量，该变量是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在树型控件中使用背景位图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9261267707358.html</link>
    <description><![CDATA[一、引言： 对于TREWVIEW控件的背景位图的实现，目前介绍的文章比较少，有人虽然实现了，但是在点击TREE时，背景闪动比较厉害。本人在参照别人代码的基础上，把它总结一下，同时解]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在EDITBOX控件中使用背景位图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9251267707356.html</link>
    <description><![CDATA[在VC中，标准的WINDOWS控件如TREEVIEW，EDITBOX，COMBOBOX和LISTBOX等控件都不支持选择背景位图的属性，所以如果要使这些标准控件达到这种效果，必须有些非常规的方法。本文介绍一个CEDIT类如]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Outlook式样界面菜单和页面控制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9241267707353.html</link>
    <description><![CDATA[本文将介绍两个可复用的C++类：CXTOutlookBar和CXTPagerCtrl，用它们可以实现Outlook风格的用户界面，这两个类出自Codejock软件公司，是其产品XtremeToolkit的一部分。根据该公司的许可条款，任]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何实现工具栏的下拉箭头按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9231267707351.html</link>
    <description><![CDATA[IE工具栏中带下拉箭头的按钮 本文将告诉你如何实现，方法其实很简单： 1、新建一个MFC/SDI工程，一路都取默认的设置。 2、在mainframe.cpp文件中找到CMainFrame::OnCreate()框架窗口创建函数。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在状态栏中实现进度指示器控制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9221267707349.html</link>
    <description><![CDATA[我最近作了一个C++/MFC程序，这个程序有时要加载大容量文件，为了让文件加载过程不至于太单调，我想在UI中用进度指示器显示文件的加载过程，而且我想在程序的状态栏中使用这个指]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Outlook风格的单列使用不同的颜色显示新邮件数]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9211267707347.html</link>
    <description><![CDATA[当利用业余时间开发完成纷飞(Outplay...)一个类似Outlook的客户端的邮件程序后，发现Outlook的新邮件的显示使用单列不同的颜色，酷酷的，于是决定，也该让我的Outplay如此... 说做就做，就]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何实现类似VC属性表中的钉子按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9201267707345.html</link>
    <description><![CDATA[1、新建一工程，基于对话框，采用默认设置。 2、添加一个新类，CSButton基类CButton。 3、加入两副位图，分别表示钉子钉下和没有钉下时的状态。 4、向类中加入变量CBitmapbitmap,bitmap2,BO]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在窗体中加入3D Bar]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9191267707342.html</link>
    <description><![CDATA[经常在VCKBASE上面看到很多别人写的文章，想着自己哪天也在上面写点文章呢！正好前几天由于编程的需要。要做一个有3D边框的static控件,于是在查考别人做的3DBar的基础上，自己做了一]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过程序向RichEditView写文本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9181267707339.html</link>
    <description><![CDATA[在建立SDI或MDI程序时,如果选择了RichEditView,就可以利用RichEdit提供的丰富的格式,但是如何通过程序在RichEditView中写入文本却是一个问题,下文就介绍了如何实现用程序在RichEditView中写文本]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CGfxOutBarCtrl之BUG篇]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9171267707332.html</link>
    <description><![CDATA[我是一位VC++的初学者，算起来时间还不到四个月，但是我几乎每天都会光临VC知识库网站，我是位界面发烧友，对网站上的新控件都是一一不舍的感觉。VC知识库网站近日刊登的一个仿]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何实现Office式样的扁平组合框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9161267707330.html</link>
    <description><![CDATA[MSOffice家族产品中常常见到扁平式组合框，本文将介绍一个C++类：CXTFlatComboBox，用这个类可以在自己的程序中轻松实现扁平式组合框，也就是让标准的CComboBox控件外观扁平化。CXTFlatComb]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在工具栏上添加平面下拉控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9151267707329.html</link>
    <description><![CDATA[使用过WordXP的人都知道，她的界面可谓是耳目一新。尤其是她的菜单和工具条可真是酷。网上也有很多很多的人都在模仿着她，包括很多的软件公司的产品。她的出现，使得软件界刮起]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CButtonST使用技巧（三）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9141267707325.html</link>
    <description><![CDATA[一、CWinXPButtonST类 CWinXPButtonST类是一个CButtonST的派生类。它的特点是使用了WindowsXP中的圆角、黑色边框的风格。它包括WinXPButtonST.h和WinXPButtonST.cpp两个文件，而由于它是从CButtonST派生而来]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CButtonST使用技巧（二）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9131267707321.html</link>
    <description><![CDATA[1.改变鼠标进入按钮时的形状(超链接效果) 2.菜单按钮 3.位图按钮 4.按钮焦点 5.CheckBox按钮 6.透明按钮(按钮背景和窗口背景一样) 7.特殊的PictureBox 效果一：改变鼠标进入按钮时的形状(超链]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CButtonST使用技巧（一）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9121267707320.html</link>
    <description><![CDATA[本篇主要包括了以下的效果： 1.在按钮上加入Icon，使Icon和文字同时显示 2.显示平面按钮 3.使按钮上的图标可变 4.设置按钮在不同状态下的底色和文字颜色 5.设置图标和文字的位置 6.根据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何实现24位色工具条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9111267707317.html</link>
    <description><![CDATA[大家知道IE的工具条都是多彩的，本文介绍如何在自己的应用程序里实现24位色工具条。如图一所示： 第一步： 在mainframe.h文件中声明成员变量： CToolBarm_hotToolBar; 在CMainFrame::OnCreate()中创]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CButtonST使用技巧: CButtonST简介]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9101267707317.html</link>
    <description><![CDATA[CButtonST使我目前见过的最强大，功能最全的CButton派生类。撰写本文的目的不在于技术的讨论，而是希望能够为各位提供关于CButtonST的使用参考，以提高编写程序的速度。 下图是用CButt]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种漂亮的自绘菜单]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9091267707313.html</link>
    <description><![CDATA[以前还是菜鸟时就觉得QQ的菜单做得很漂亮，想着自已的程序如果有那种菜单多好。 现在积累了一定的知识，就自已设计了一个类似的菜单控件类。并把它发表出来供大家使用和参考，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何定制浮动工具条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9081267707310.html</link>
    <description><![CDATA[关于这个问题，其实网上可以找到很多这方面的文章和例子。尤其是在MSDN上，你可以查阅到非常详细的内容。为简单起见，本文这里只将需要定制的代码列出来。 第一步： 创建一个M]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CGfxOutBarCtrl之提升篇]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9071267707306.html</link>
    <description><![CDATA[今天难得有空停下手中的活来收一下信箱的MAIL，很高兴能收到大家的来信，其中大多都是针对上期中的一篇文章：。看到大家热情洋溢的言语我想再次感谢VC知识库的朋友们！其中有几]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[颜色选择组合框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9061267707305.html</link>
    <description><![CDATA[大家对Word一定非常熟悉吧，它里面的东东可真不少，不管是活泼可爱的“大眼夹”，还是各种平面造型的Windows控件我都很喜欢。那么这次就让我们来做个非常常用的控件：“颜色组合框]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何去掉浮动工具条中的“关闭”按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9051267707303.html</link>
    <description><![CDATA[在C++/MFC框架应用程序里，当浮动工具条被拖离主窗口后，一般都有一个“关闭”按钮，如图一所示： 本来这个按钮完全是按照Windows应用程序的UI设计规范而设计的，也就是说所有的窗口]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[设计XP风格的按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9041267707300.html</link>
    <description><![CDATA[论坛上许多人都在讨论如何编写具有XP风格的界面，其实网上有设计好的类库，可以直接拿来使用。但这些终归是别人写的，能不能转化成自已的呢。于是笔者就对这些代码进行研究，算]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现类似Excel和Visual C++里文件夹式样的标签控制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9031267707298.html</link>
    <description><![CDATA[在本文的前面和中，我们描述了CFolderTabCtrl标签控制的设计思想、创建过程以及工作原理，通过一个实用程序分析了将CFolderTabCtrl与MFC框架结构融于一体的思路以及关键技巧。CFolderTabCt]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现类似Excel和Visual C++里文件夹式样的标签控制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9021267707295.html</link>
    <description><![CDATA[在我们创建了一个类CFolderTabCtrl，用这个类实现了类似Excel和VisualC++应用中文件夹式样的标签控制。在阅读本文之前，最好先看上一篇文章及其例子代码FldrTab。FldrTab纯粹是一个测试CFol]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[应用程序中添加“Coolbars”的简单方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9011267707295.html</link>
    <description><![CDATA[从微软新版本的ie中，我们明显感觉到微软正在采用一种新的工具条外观。新风格的工具条长被称为“Coolbar”。其图标始终保持扁平状态，除非鼠标指针移到上面。Coolbar首次出现是在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[介绍一个有Toolbar功能的可重用类 CPopupText]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/9001267707290.html</link>
    <description><![CDATA[背景：我用一个CListBox派生类实现宿主（owner-draw）列表框，这个列表框的项目宽度超过了列表框本身的宽度，因此当鼠标指针指向大宽度的列表框项时，我想显示一个类似Toolbar的提示窗]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现类似Excel和Visual C++里文件夹式样的标签控制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8991267707289.html</link>
    <description><![CDATA[众所周知，Excel中一个工作簿可以有多个工作表单（worksheet），每个表单可以通过左下角的标签控制灵活切换（如图一），VisualC++也有类似的控制，如在Output窗口中设置有：Build，Debug，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在工具栏按钮上添加文本标签]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8981267707282.html</link>
    <description><![CDATA[一、前言 对于工具栏，我想大家一定不陌生，它直观，使用方便，它给应用程序的用户带来极大的方便．对VC++程序员来说，为自己开发的软件加上一个工具栏并不难，几乎每本介绍VC]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似Dreamweaver的颜色选择器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8971267707281.html</link>
    <description><![CDATA[一、前言 用过Dreamweaver的朋友一定对它的颜色选择器留下深刻的印象，因为它确实相当好用，其中的一项比较实用的功能是可以选取屏幕上任意一点的颜色。笔者按此思路封装了一个称]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自绘按钮的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8961267707278.html</link>
    <description><![CDATA[如果你希望能够在自己的程序中表现出新意，那么你一定不会仅仅满足于MFC提供那些标准控件。这时，我们就必须自己另外多做些工作了。就改变控件外观这一点来说，主要是利用控件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VC6扩展CButton类制作风格独特的按钮]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8951267707275.html</link>
    <description><![CDATA[一、本文介绍一个CButton的派生类CLinkButton，用此派生类制作的按钮具有以下特点： １、按钮的外观类似静态控件类CStatic产生的对象。 ２、当鼠标的光标移到按钮上，但并未按下时，光]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC中多语言菜单的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8941267707269.html</link>
    <description><![CDATA[软件的国际化不可避免。一种软件可能被很多国家的人使用，如给您的软件加上多种语言的菜单，不但给使用者带来很多方便，也为您的软件的推广带来很多便利。比如给您开发的中文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图形超链接类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8931267707269.html</link>
    <description><![CDATA[我在写程序的过程中发现著名的CHyperLink类不能用于图形控件的超链接，于是在其基础上修改了一下，为了方便用户的使用，并没有与CHyperLink类整和，而是另立了一个类，叫CMapHyperLink。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[程序启动画面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8921267707268.html</link>
    <description><![CDATA[在VC知识库上看到许多有关程序启动画面的程序而我觉得程序讲求的是简而易懂,不需要太多的技巧,只要程序写的出来就好,于是我以另外一种简便的方式来设计程序启动画面同时在程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在EVC3.0中创建MDI程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8911267707263.html</link>
    <description><![CDATA[前言 WinCEforPocketPC2002通常只支持SDIMFC程序。我们可以使用一点欺骗技术来将它转变为MDI应用。在任一时刻，你仍然只能有一个视图。但是你可以隐藏、销毁当前视图或者其他视图。新视]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现标题条的显示与隐藏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8901267707262.html</link>
    <description><![CDATA[有时候为了实际的显示面积大一些或其他的一些原因需要对标题条进行隐藏或显示。本文使用一个简单的例子，说明如何在MFC应用程序的框架下来实现它。其中使用API的方法也可用于其]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无模式对话框的创建与使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8891267707259.html</link>
    <description><![CDATA[在编程过程中,对话框经常用到,但对无模式和模式对话框的创建和销毁过程,经常有误解,下面提供一个无模式对话框的例子来剖析无模式对话框的形成: 无模式对话框与有模式对话框不同]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[列表控件排序功能的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8881267707257.html</link>
    <description><![CDATA[一、前言 列表控件是大家经常用到的控件，但对其排序时因为需要设计用于排序的回调函数，所以往往让初学者不知所措，本文提供了一个将排序功能封装好的类:CSortListCtrl，您只需要]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[界面专家简介]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8871267707256.html</link>
    <description><![CDATA[界面专家SDK0.5完全支持Vc6,Vc.net2003,可以提供界面支持，使您的程序在Win9x操作系统中也可以拥有像Winxp一样的漂亮界面，您只需通过简单的设置即可拥有漂亮的界面，下图是使用界面专家]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个托盘程序演示 －闹钟 Alert]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8861267707251.html</link>
    <description><![CDATA[想必大家都看见过那些在系统托盘（Tray）中的程序吧，本文就演示了如何创建一个这样的托盘程序Alert。Alert是一个运行在系统托盘中的小闹钟，它在设定的时间后触发，运行屏幕保护]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用代码动态添加控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8851267707250.html</link>
    <description><![CDATA[在资源编辑器里我们可以方便地在对话框中加入所需控件，比如文本编辑框、列表控件等。但假如我们需要在运行期间动态生成这些控件该怎么做呢？本文就是讲述用代码动态添加控件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个优秀的网格控件CGridCtrl]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8841267707249.html</link>
    <description><![CDATA[网格控件的用途非常广泛，在我的一个项目中需要实现类似EXCEL的界面，为此我采用了一个优秀的CGridCtrl控件，其原作者为ChrisMaunder(原作者所写的MFCGridcontrol的最新版本可以到http://www.]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[think window procedure]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8831267707243.html</link>
    <description><![CDATA[1.用Win32API编程时，windowprocedure比较明显，那就是程序员自定义windowprocedure，但Win32提供了一个API函数DefWindowProc()，缺省的处理要交给它。 intAPIENTRYWinMain(HINSTANCEhInstance,HINSTANCEhPrevInstance]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人考勤软件开发实例配套代码 2.1版（Update）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8821267707242.html</link>
    <description><![CDATA[这个程序是一个个人考勤软件,它从系统时钟获取时间信息,只要上下班时按时在当日考勤栏内点击相应的栏目标题即可逐日记录下个人每天的工作时间,按月统计汇总,按年形成文件.可以随]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[获得 Win32 窗口句柄的更好的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8811267707238.html</link>
    <description><![CDATA[这三篇文章的原文实际上都出自MSDNMagazine及其前身MSJ的“C++QA”专栏作家PaulDiLascia之手。此君从1995年开始就成为MS在C++/MFC方面的高级写手，Paul在Windows应用开发领域的造诣颇深。直到现在]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[再谈 CFileDialog 对话框的定制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8801267707238.html</link>
    <description><![CDATA[很多人都在翘首企盼这个“下次再说吧......”究竟会如何？本文且让我将这个尾巴割掉，从而彻底解决遗留的问题。同时也解除大家心头的牵挂。 其实，解决方法很简单，之所以当时没]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[介绍一个操作DHTML表格的C++对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8791267707232.html</link>
    <description><![CDATA[如果在您的软件中需要输出报表，您也许有很多办法，但实现起来估计就不简单了。其实用DHTML提供的表格可以在很大程度上满足一般的需求。本文正是试图通过包装对DHTML表格的操作使]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows资源管理器Web视图界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8781267707232.html</link>
    <description><![CDATA[当我们使用Windows资源管理器(Exporlor)时，看到左边的视图能够显示所选目标的相关信息，比较好用。 本例是一个简单的Web视图界面示例，不过左边不是一个Web视图，而是一个FormView。界面]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为你的程序换个皮肤]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8771267707229.html</link>
    <description><![CDATA[目前这方面的小软件很多，我一直就想做这么一个东东，但是一直苦于时间有限，一直都没有做。最近一段时间，我发现这些方面的东西越来越多，而且都没有源代码，一些家伙在网站]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[橡皮区矩形 CRectTracker C# 实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8761267707226.html</link>
    <description><![CDATA[在MFC中CRectTracker是一个很有用的类，可最近学习C#时，发现没有，于是就从MFC转换了一个供大家享用。 使用该类比较简单，几乎和MFC中的CRectTracker一样，在MDI中： publicclassCReportDoc{...pu]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Visual Basic .NET 中多 Windows 窗体的同步]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8751267707225.html</link>
    <description><![CDATA[我用单个窗体的多实例构建一个Windows窗体应用程序。我想把它写成这样一个程序：对该窗体任何一个实例的操作都会在所有其它实例上反映出来。我该怎么做？ 这是一个有趣的问题。我]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[透明窗体的又一实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8741267707224.html</link>
    <description><![CDATA[前面拜读过本站无数高手的许多好文章，受益非浅，首先向各位大侠致敬！今天编程偶有小得，不敢独享，特拿出来与各位共享，希望对某些朋友有些许帮助。 透明窗体的问题相信大家]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个打印报表的简单的类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8731267707219.html</link>
    <description><![CDATA[一、前两天为公司改程序，其中有一部分是要打印出报表。原来的程序是调用VB写的一个程序。那个程序用VBA方式实现的，在一个空的WORD表格模板里填入数据，让WORD去打印，效果还可以]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SDK 程序使用SkinMagic工具包换皮肤]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8721267707217.html</link>
    <description><![CDATA[在看《Windows程序设计》的时候，就在用SkinMagic换肤，但SkinMagic中的SDK程序例子只能用文件方式加载皮肤，很不方便，而且还有一些Bug。后来看了下面这篇文章才茅塞顿开，终于会用Sk]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松实现类 MSDN 2002 界面(二)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8711267707215.html</link>
    <description><![CDATA[前段时间在VC知识库发表了，仅仅实现了标签页的拖放、停靠、浮动等功能，而上面的图钉按钮也只是一个假的^_^。通过参考http://www.codeproject.com/docking/pinnabledock.asp的代码对程序进行了]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松实现类 MSDN 2002 界面(一)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8701267707210.html</link>
    <description><![CDATA[看到这个标题大家肯定会想到王骏发表在知识库第十一期的《轻松实现类VC界面》，呵呵，没错，俺参考并借用了他的部分代码，在这里先表示感谢！ 一直想实现类似MSDN2002式样的界面]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种另类“关于(About)”对话框的动态显示方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8691267707205.html</link>
    <description><![CDATA[介绍 一般的系统帮助文件在显示关于帮助信息的时候大部分采用的方法是静态的形式将要显示的内容显示到界面上，由于这次担任项目开发，我总觉得那样太单调了，于是，在各个网站]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对话框打印预览及打印]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8681267707204.html</link>
    <description><![CDATA[近来我在用VC开发一套MIS时没有用MFC的文档视图模板，所以在打印这上面就只好自己写了一套，用起来感觉还可以，所以写出来大家一起修正一下吧，也许能给大家起点作用吧!系统UI是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[也谈如何隐藏显示在任务栏中的对话框程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8671267707203.html</link>
    <description><![CDATA[在VCKBASEOnlineJournal第21期中，NorthTibet写了“”一文，颇为巧妙，而且非常好用，唯一不爽的是有点麻烦。踩在他的肩膀上，我找到了一个比较简单的方法。 实现 隐藏这个MainDialog的思路就]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作 MSN、QQ 的消息提示窗口]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8661267707198.html</link>
    <description><![CDATA[用过QQ和MSN聊天工具的人都知道，只要好友上线，就会在托盘的位置处显示一个提示窗口，可以是拉帘式的，或者是淡入淡出的形式出现；想想何不为自己的程式也加一个漂亮的提示窗]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何换肤、子类化的解决方案]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8651267707198.html</link>
    <description><![CDATA[对于应用程序的换肤及子类化。下面是我尝试过一些方法，以在CAboutDlg中子类化其中的Button为例： 第一种：直接用现成的类 1、自己写一个类classCButtonXP:publicCButton{/*...*/} 用MessageMap处理]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何对 BCGControlBarPro 进行换肤]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8641267707194.html</link>
    <description><![CDATA[我们知道使用VC开发大型的应用系统时，都会碰到一个界面设计和风格布局的问题。如果一切都重头开始设计和编写的话，将会是巨大的工作量。在短时间内很难写出一个比较健壮功能]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改变窗口中的光标形状]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8631267707191.html</link>
    <description><![CDATA[如何在注册表中查找默认浏览器位置的定义？我需要知道EXE文件的路径和名称以便启动一个应用程序会话。我的目的很简单，就是打开默认的浏览器，这样用户能够象普通程序一样使用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[定制个性化的对话框窗口类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8621267707188.html</link>
    <description><![CDATA[相信很多人在VC下开发程序的时候大多都会采用基于对话框的开发吧，我也不例外，大多数的小型测试程序没有必要开发基于文档／视图的结构来测试，只要使用一些基本的对话框程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[更新MFC中的视图，跟踪.NET Framework中的事件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8611267707187.html</link>
    <description><![CDATA[我在MDI程序中打算通过CMainFrame中的定时器事件来更新所有的子窗口。视图用于显示许多图表。用如下的代码只能更新当前活动窗口： GetActiveWindow()-GetActiveView()-GetDocument()是否有其它的方]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 中不规则窗体的编程实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8601267707184.html</link>
    <description><![CDATA[一、序言 在绝大多数的Windows应用程序中，其窗体都是使用的正规正矩的矩形窗体,例如我们常用的，“记事本”，“扫雷”，等等。矩形窗体，具有编程实现简单，风格简洁的优点，所]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解说Win32的窗口子类化]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8591267707181.html</link>
    <description><![CDATA[也许你需要一个特殊的Edit来限制浮点数的输入，但是现有的Edit却并不能完成这项工作——因为它只能够单纯的限制大小写或者纯数字。当你在论坛上求救的时候，某个网友告诉你：“用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用测试优先方法开发用户界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8581267707177.html</link>
    <description><![CDATA[1、概述 测试优先是测试驱动开发(Test-DrivenDevelopment,TDD)的核心思想，它要求在编写产品代码前先编写基于产品代码的测试代码。在测试驱动开发的单元测试中，对GUI应用实施自动测试应]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从资源中加载皮肤]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8571267707177.html</link>
    <description><![CDATA[由于单位上最近要开发一个内部使用的小型项目,我需要一个运行稳定的，能够将皮肤文件放到资源里的并且易于使用的界面开发包，当然,免费的最好。于是利用google一阵狂搜,嘿，真还]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的登录对话框的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8561267707172.html</link>
    <description><![CDATA[要求用户正确输入用户名和密码，然后才能进入系统。刚好前几天有个人问俺如何在程序启动时先启动登录对话框的问题，俺就给他写了个示例程序，今天拿出来给大伙共享，有什么不]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的日记本程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8551267707170.html</link>
    <description><![CDATA[我开发的一个基于对话框的日记本小程序。以前在VC知识库中找基于对话框的序列化存储的程序一直没有找到，就自己做了一个。用到了链表和序列化，在对话框中使用工具栏，希望对]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ActiveSkin 4.3 软件换肤在VC中的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8541267707166.html</link>
    <description><![CDATA[ActiveSkin是一款给软件更换皮肤的ActiveX控件。它很还好的将软件界面设计工作从繁琐程序代码编写中解放出来，使得功能设计者可以专心于功能代码的实现，而把软件界面交给美工人员]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个在RichEdit中添加表情图象的类]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8531267707165.html</link>
    <description><![CDATA[说明 本文根据VC知识库《在线杂志》的第30期的一篇文章：《》，介绍了一个可以在RichEdit中添加表情图象的类CFaceEdit。以下是使用这个类的程序截图： CFaceEdit类的使用 使用方法 我们可]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[计算MDI子窗口数,仅显示文件夹的打开对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8521267707164.html</link>
    <description><![CDATA[我正在写一个MFC的多文档（MDI）应用。在父窗口中，我如何检查所有的MDI子窗口是否都已经关闭？如果都关闭了，那么我想在我的主窗口激活一个窗格。 Ramesh Windows和MFC不提供任何专门]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似于FlashGet的悬浮框的制作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8511267707161.html</link>
    <description><![CDATA[最近再制作一个工具软件时,想做一个象FlashGet里那种悬浮框,经过一个晚上的尝试,以及网上的资料的帮助,解决了该问题,现在将其过程与大家分享一下。 这种悬浮框要求的就是一个置顶的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[智能ABC窗口的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8501267707156.html</link>
    <description><![CDATA[高级顶层窗口是一种无标题栏、菜单、工具条的一种常居顶层的窗口，最常见的例子就是输入法窗口，比如智能ABC窗口。这类窗口的特点除了上边所说的，最重要的就是窗口移动。普通]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在打开文件对话框上实现图象预览]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8491267707154.html</link>
    <description><![CDATA[本文主要是介绍在打开文件对话框，实现对图象，文本等预览(在VC++6.0下实现)。本人的水平有限，如有表达不清之处，请谅解，请各位提出意见与建议！ 正文： 1、Win98下预览对话框的实]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在类VC的界面实现中加入目录树]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8481267707154.html</link>
    <description><![CDATA[一、实现原理 图中两个窗口的实现类是从CControlBar派生出来的，王骏先生将CSizingControlBar类修改了一下并命名为CCoolBar,我所要做的是应用该类。左边窗口中的目录树，是从类CdirTreeCtrl派生]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用非模窗口生成MDI介面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8471267707148.html</link>
    <description><![CDATA[我想生成一个MDI窗口的界面，但发现用VC实现起来很麻烦，要加很多很多的RUNTIME_CLASS，而且不能实现在主窗口中加入功能选项。就是说生成一个OUTLOOK的主窗口，在主窗口中再加入多文档]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[软件换肤技术在 BCB 中的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8461267707147.html</link>
    <description><![CDATA[看一个软件是否优秀，除了功能健全、性能稳定、容易操作之外，软件界面的美观越来越受到人们的关注。人们不满足于传统的矩形windows窗体，不规则窗体的软件到处可见，更进一步发]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[报表输出轻松搞定]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8451267707141.html</link>
    <description><![CDATA[一、刚刚开发了一个报表输出的COM，可以动态的添加数据。代码没有限制，可随意使用。现在还在修改一些细节的地方，修改后会再次上传。 二、代码说明 1、首先注册COM控件使用regs]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人考勤软件开发实例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8441267707141.html</link>
    <description><![CDATA[这个程序是一个个人考勤软件,它从系统时钟获取时间信息,只要上下班时按时在当日考勤栏内点击相应的栏目标题即可逐日记录下个人每天的工作时间,按月统计汇总,按年形成文件.可以随]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VC6.0实现窗口的任意分割]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8431267707139.html</link>
    <description><![CDATA[一、关于CSplitterWnd类 我们在使用CuteFtp或者NetAnt等工具的时候，一般都会被其复杂的界面所吸引，在这些界面中窗口被分割为若干的区域，真正做到了窗口的任意分割。那么我们自己如何]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何让一个打开的文档成为活动文档]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8421267707133.html</link>
    <description><![CDATA[有一个树型控件，在其TVITEM的用户部分存储着一个文档指针。当双击项目时，我想从打开的文档列表中激活文档。所以对于给定的文档类（CDocument）指针，如何在MDI应用中激活这个指针]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建非矩形窗口的简单方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8411267707131.html</link>
    <description><![CDATA[为了创建不同形状窗口的应用程序，象MP3播放器，我设置对话框的背景为“TRANSPARENT”（透明）（使用SetBkMode）并在WM_CTLCOLORDLG消息处理器中创建一支“空笔”（NULL）来绘制对话框背景。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松实现类VC界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8401267707130.html</link>
    <description><![CDATA[一、实现原理 图中两个窗口的实现类是从CControlBar派生出来的，我们并不需要从头到尾实现该类，因为CristiPosea先生已经为我们实现了一个称为CSizingControlBar的类，而且做得相当完美！我]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[视图的缩放的完整论述]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8391267707128.html</link>
    <description><![CDATA[一坐标系统概述 众所周知，VC中的坐标系统分为逻辑坐标和设备坐标，逻辑坐标就是内存中虚拟的坐标，我们可以理解为看不见的，而设备坐标就是跟具体的设备相联系的坐标系统，如]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何发送命令到文档对象]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8381267707126.html</link>
    <description><![CDATA[问题： 我编了一个类似Windows2000上性能监视器的程序。在这个程序中，我创建了一个文档对象和几个视图。文档对象负责有规律地采集数据，然后通知相关的视图以不同的格式显示这些]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何有效地使用对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8371267707124.html</link>
    <description><![CDATA[Q:如何在对话框中加入工具条 在OnInitDialog中加入下面代码： BOOLCYourDlg::OnInitDialog(){ CDialog::OnInitDialog(); //Createthetoolbar.Tounderstandthemeaningofthestylesused,you //cantakealookattheMSDNfortheCreatefunctionoft]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何获得另一个应用程序窗口中的文本]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8361267707122.html</link>
    <description><![CDATA[问题： 我想从一个程序获得另一个程序编辑框的文本。用GetWindowText试了一下，它总返回NULL。请问大虾有没有办法来获得另一个程序窗口中的文本？如果能，如何实现?另外，在VC知识库]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个定制CFileDialog对话框的实例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8351267707117.html</link>
    <description><![CDATA[很多程序员都喜欢让自己的代码运行效果与众不同。Windows系统的应用程序打开某个文件一般使用的都是默认的CFileDialog。但是这个默认的CFileDialog往往满足不了用户的要求。我就碰到一个]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XP风格复活节彩蛋的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8341267707114.html</link>
    <description><![CDATA[如果您用过微软Office系列产品的话，一定会知道它们中很多在关于对话框中都隐藏了一些小功能，只有当用户点击某些特殊的键盘或鼠标按键时，这些功能才会显示出来(就象复活节彩]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改变视图单调的背景]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8331267707114.html</link>
    <description><![CDATA[我们在用VisualC++写程序时，会看到她自动产生的界面背景非常的单调，我们可以自己来改变这个问题来实现美丽的背景，希望本文对初学者有所帮助。 下面来跟我做： 1.首先准备好一张]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[程序界面多模式显示的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8321267707111.html</link>
    <description><![CDATA[如果你用过RealPlayer播放器的话，那就一定对它的多模式显示方式不会陌生吧！RealPlayer拥有正常和精简两种显示模式。我们有时也想在自己的程序界面上实现类似的功能，该怎样实现呢？]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[《电子尺》V1.02程序开发实例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8311267707108.html</link>
    <description><![CDATA[程序功能 有时在制作网页或一些多媒体时，需要插入一些自制的图片和flash动画，在制作之前一定需要先确定图片的高和宽，用这个软件就可以轻松的量出你所需要的高和宽。 总体介绍]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使窗体拥有透明效果的API]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8301267707108.html</link>
    <description><![CDATA[一、背景 FlashGet的透明效果大家羡慕吧.传统的Windows应用程序想实现半透明效果,一般来说需要处理自己的窗口的WM_Paint消息窗口,很麻烦.现在好了,SetLayeredWindowAttributes是windows的新api,win2]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[美化你的应用程序的外观界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8291267707104.html</link>
    <description><![CDATA[很多编程爱好者都有这样的经历，自己写的程序非常漂亮，但是在Windows平台下开发的程序却总是逃不出Windows默认风格的约束。标题栏、工具栏，一成不变的风格使得再有创意的作品也]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何按非客户区移动窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8281267707102.html</link>
    <description><![CDATA[我曾在VCKBSAE上看到一介绍如何按非客户区移动窗体，既重载WM_NCHITTEST,返回HTCAPTION。但我认为有一点不妥就是没有了鼠标右键功能。这里我介绍一种方法，即可已在客户区移动窗体又可以]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在对话框程序中插入DialogBar]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8271267707097.html</link>
    <description><![CDATA[在基于MainFrm程序中加入DialogBar很方便，大家都知道，DialogBar有着工具条无法比拟的优越性，它可以任意放置控件，轻松实现如WPSOFFICE的导航功能。但是在基于Dialog的程序怎么实现这种导]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[仿制金山毒霸专杀工具界面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8261267707096.html</link>
    <description><![CDATA[金山毒霸2002自推出以来，广受用户的喜爱。今天在这里我要谈的不是金山毒霸的功能，而是其别具一格的界面。本人早就对金山毒霸的界面垂涎三尺，如果自己的程序里能用上金山毒霸]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无标题栏对话框的拖动]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8251267707093.html</link>
    <description><![CDATA[很多基于对话框的应用程序都是不带框架的，也就是说对话框没有标题栏。众所周知，窗口的移动都是通过鼠标点住标题栏拖动窗口实现的，那么现在没有了标题栏，如何移动对话框呢]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在MFC程序中添加全屏显示功能]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8241267707089.html</link>
    <description><![CDATA[具体实现步骤: 以下的代码被添加到CmainFrame类中。这里是使用到的四个消息以及他们的简要说明： 1．OnViewFullScreen：全屏显示菜单项的句柄。 2．OnGetMinMaxInfo：捕获WM_GETMINMAXINFO消息来让]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MFC框架程序中全屏显示特性的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8231267707088.html</link>
    <description><![CDATA[在开发图像显示程序以及视频应用程序时，常常需要全屏显示特性，比如ACDSee和豪杰解霸等应用都有全屏显示功能。本文将介绍如何在MFC框架程序中实现视图的全屏显示，也就是说将标]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作类似网络蚂蚁的拉帘式Tab]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8221267707087.html</link>
    <description><![CDATA[凡用过网络蚂蚁的人都知道，网络蚂蚁界面右下角的Tab不同于一般的Tab。它是运动的，当单击选项卡时，相应的子界面从左向右运动，给整个软件一种动感。笔者用VC＋＋6.0也实现了类似]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IE控制条的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8211267707082.html</link>
    <description><![CDATA[相信各位兄弟对微软公司的IE一定非常的熟悉，由其是其右侧可以显示和隐藏的收藏夹看上去非常的美观，基于这点，我便做了这个关于IE控制条的示例工程，现在将其贴于www.vckbase.com上]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC启动窗口画面制作方法研究]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8201267707079.html</link>
    <description><![CDATA[1.概述 前几天在设计软件时，选择VC作为开发工具，想做个启动画面，由于以前没有制作过，所以到网上搜了一通。网上有几篇相关文章，有两篇我觉得很有价值：一篇是关于为方便显示]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MFC应用程序中指针的使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8191267707078.html</link>
    <description><![CDATA[VC中编程对于刚刚开始学习的同学，最大的障碍和问题就是消息机制和指针获取与操作。其实这些内容基本上是每本VC学习工具书上必讲的内容，而且通过MSDN很多问题都能解决。 下面文]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个效果很好的outlookbar控件CXTOutBarCtrl]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8181267707077.html</link>
    <description><![CDATA[该控件来源于XtremeToolkit,我对其进行了修改，使其不依赖于类库独立存在，由于我没有运用XT的其他类，可能你会觉得它没有在类库中的华丽，但相对于其小巧的体格而言，已经很难得了]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在对话框程序中使用动画控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8171267707073.html</link>
    <description><![CDATA[很多人都想在程序中实现avi控制。本文将一步一步教你如何在一个基于对话框的程序中添加avi动画控制（CAnimateCtrl）。其实只要知道了方法，整个过程很简单。图一是本文例子程序运行]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[支持换肤功能的窗口实例]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8161267707072.html</link>
    <description><![CDATA[一、前言 如今，支持定制皮肤功能的软件越来越流行。这样用户就可以自己修改程序的外观。甚至Windows操作系统本身做到这点了。WindowsXP提供的主题（theme）技术可以修改窗口、按钮、]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[形态各异的不规则窗体]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8151267707071.html</link>
    <description><![CDATA[说起不规则窗体也许我们大家都会觉得新鲜，这是因为我们平日里绝大部分窗体用的都是正规正矩的矩形窗体，Word这个大名鼎鼎的软件想必大家都已用过，那么在Word里就按下你手中的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Convert CHtmlView to CHtmlCtrl(View与Frame的分离)]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8141267707067.html</link>
    <description><![CDATA[首先，这里有两个难点需要解决!一是:既然最后的产物是CHtmlCtrl，如何能象其他控件(比如Button)随意的丢到对话框里呢?COM-ActiveX??你说的，你自己做去吧!偶可是个COM稀里糊涂者!!偶要比你]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何给基于对话框的应用加启动画面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8131267707065.html</link>
    <description><![CDATA[很多基于对话框的程序都有一个启动画面，那么如何为自己的对话框程序也加一个这样的画面呢？本文将一步一步教你实现每一个细节。其实VC++开发环境中有一个现成的SplashScreen组件，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不规则对话框的又一实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8121267707064.html</link>
    <description><![CDATA[此不规则对话框的实现应用了一个重要的位图对话框类——CBitmapDialog，通过灵活运用，可以实现任意形状的对话框。 一、CBitmapDialog简介： CBitmapDialog从CDialog派生并封装了根据位图形成]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VC++.net中制作启动屏幕的新方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8111267707060.html</link>
    <description><![CDATA[在利用VC++.net编程过程中，遇到制作启动屏幕的问题，几经试验，得出一种方便简单的制作方法。 基本原理是利用对话框窗口的特性，在启动时首先创建对话框，设置一个获得位图文件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[椭圆窗体的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8101267707057.html</link>
    <description><![CDATA[我将分三部分介绍这一程序的实现过程： 1．生成椭圆形图形界面，并在上面写斜体带颜色的子和鼠标拖动功能。 2．增加鼠标右键菜单，并实现总在前面和其他程序自动覆盖的功能。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SkinMagic工具包创建换皮肤程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8091267707055.html</link>
    <description><![CDATA[以前看到瑞星和金山词霸有换皮肤功能，很是羡慕，自己也想做个换皮肤的程序，但毕竟自己能力有限，以前在此处看到一篇介绍换皮肤功能的文章，但只能应用在对话框程序上。我也]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写多文档应用程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8081267707049.html</link>
    <description><![CDATA[1．菜单 BOOLSetMenu( HWNDhWnd, //handletowindow HMENUhMenu//handletomenu);可以改变菜单。 2．工具栏 BOOLCToolBarCtrl::SetState(intnID,UINTnState);可以改变工具栏按钮状态。 还要调用CFrameWnd::RecalcLayout（）函数]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SkinLoad程序界面换肤工具]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8071267707049.html</link>
    <description><![CDATA[说明：SkinLoad是一个给程序换肤的工具，通过几个简单的函数调用就可以给你的应用程序加上漂亮的皮肤，包括所有的系统对话框。通过SkinLoadMaker皮肤编辑工具，可以自己定制皮肤。 如]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在标题栏中显示动态图标]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8061267707048.html</link>
    <description><![CDATA[一般情况下，程序中的标题栏的图标是静态的。那么如何让标题栏中的图标动起来呢。原理很简单，那就是做一系列的图片，让图片按顺序交替显示，图标就像动起来一样。现在动手来]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自绘对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8051267707043.html</link>
    <description><![CDATA[界面很单调，我只是想说明一下如何实现界面的自绘。如果有需要，也可以绘制更复杂漂亮的界面。 程序的实现也不复杂，接下来就跟着我一步一步做。 首先，创建一个基于对话框的应]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows SDK 非模态对话框的消息处理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8041267707043.html</link>
    <description><![CDATA[在SDK中使用非模态对话框时，主循环中必须插入下列代码： while(GetMessage(msg,NULL,0,0){ if(!IsDialogMessage(hdlg,msg){ TranslateMessage(msg); DispatchMessage(msg); }}我的问题是： 为什么要调用IsDialogMessage]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000 UI 新特点之四：其他类型的外壳扩展]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8031267707039.html</link>
    <description><![CDATA[摘要：本文是关于Windows2000UI新特点系列文章的第四篇，探讨几个其它的外壳扩展类型，如外壳执行、图标覆盖、磁盘清理管理程序、使用属性页的文件夹定制、以及上下文菜单。 Windo]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000 UI 新特点之二：自定义文件夹栏目]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8021267707035.html</link>
    <description><![CDATA[摘要： 本文是关于Windows2000UI新特点系列文章的第二篇，本文将创建一个定制的栏目管理器扩展（columnhandlerextension），它使我们能通过Windows的资源管理器在“查看”菜单的“详细资料”]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000 UI 新特点之三：搜索管理器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8011267707034.html</link>
    <description><![CDATA[摘要：本文是关于Windows2000UI新特点系列文章的第三篇，将创建一个简单的对象搜索管理器扩展（SearchHandler）。 搜索处理是与外壳的用户接口集成在一起的一个模块，允许您查找对象，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[再谈客户区对话框拖动操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/8001267707026.html</link>
    <description><![CDATA[在线杂志第十六期有一篇文章，示范了如何用鼠标点击窗口或对话框背景（即客户区）进行拖动操作，文章中提供的解决方法在没有上下文菜单的情况下运行很正常，一旦有上下文菜单]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000 UI 新特点之一：信息条提示（Infotip）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7991267707023.html</link>
    <description><![CDATA[摘要： Windows2000引入了许多很有用的用户界面新特点，我们能在自己的应用程序中定制和实现这些用户界面。本文是由一系列文章组成，将探讨包括信息提示（Infotip）、增强文件夹特性]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000/XP中对窗口进行透明化]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7981267707020.html</link>
    <description><![CDATA[很多文章示范了使用Windows2000/XP的层次特性来实现窗口的透明化。本文可以通过该特性使任意窗口透明化，即使你没有该程序的源代码。 使用WinTrans程序你可以选择任意正在运行的程序]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用线程实现动态改变图标]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7971267707015.html</link>
    <description><![CDATA[觉得用SetTimer实现起来麻烦，且占用资源。手头一痒将其改为线程实现，并且把线程封装在类里。使用简单，不需要设置SetTimer在OnTimer函数里调用。只需直接调用m_animIcon.SetImageList(IDB_B]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在基于对话框的程序中动态设置鼠标指针]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7961267707014.html</link>
    <description><![CDATA[本文旨在示范在对话框的按钮上（或其它控制上）使用单独的鼠标指针。Windows编程中有两种方法改变指针：一种是当应用的主窗口类注册时，为WNDCLASS结构提供一个全程光标指针（HCUR]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[扩展COleDropTarget类来支持任意窗口拖放]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7951267707011.html</link>
    <description><![CDATA[一、拖放原理及MFC类库对拖放的支持 拖放(DragandDrop)是OLE的一部分，是指对某一指定的对象，利用鼠标拖动的方法，在不同应用的窗口之间、同一应用的不同窗口之间或同一应用的同一窗]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在其他程序的窗口上创建按钮并使之能响应]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7941267707010.html</link>
    <description><![CDATA[将动态连接库注入其他进程的代码如下： BOOLWINAPIRT_CTRL_BTN(LPCSTRlpszLibFile,HWNDhWnd,DWORDdwID,LPRECTpRtBtn,LPCTSTRszCaptionBtn){try{DWORDdwProcessID;GetWindowThreadProcessId(hWnd,dwProcessID);HANDLEhProcess=OpenProcess(PR]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何定制对话框中的回车键]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7931267707005.html</link>
    <description><![CDATA[基于对话框的程序中，每次按下回车键时，程序都退出。去掉按钮的BS_DEFPUSHBUTTON属性并重写OnOK函数也没用。那么如何定制回车键的行为呢？这个问题很easy，但是要说明白，却要费点时]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Dialog中使用Menu和Toolbar]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7921267707004.html</link>
    <description><![CDATA[在用VC编程时，界面制作远不如Delphi、VB容易。我又常常用到基于Dialog编写应用程序。而在直接在Dialog使用Toolbar和Menu的资料很少。而我有机会可以总结一些经验，供大家分享，希望能得]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[再谈 Windows 2000 “打开”文件对话框]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7911267707002.html</link>
    <description><![CDATA[不久以前，VC知识库曾探讨过如何在MFC应用中打开（类似OutlookExpress左边的PlacesBar）。最近又有许多人问及这方面的问题，也许我在那篇文章中讲的不是很清楚，所以这次在本文中重申这]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows2000新型Open对话框的使用]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7901267706998.html</link>
    <description><![CDATA[我能否只设置一个标志，或者我是否需要一个新的头文件和一个新的公共对话框的DLL？我注意到一些旧的应用程序如Notepad好像可以打开新的Open对话框而无须重新编译，但它们不是MFC应用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于API的录音机程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7891267706994.html</link>
    <description><![CDATA[一、数字音频基础知识 Fourier级数： 任何周期的波形可以分解成多个正弦波，这些正弦波的频率都是整数倍。级数中其他正线波的频率是基础频率的整数倍。基础频率称为一级谐波。]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文本语音转换入门]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7881267706992.html</link>
    <description><![CDATA[文本语音（Text-to-Speech，以下简称TTS），它的作用就是把通过TTS引擎把文本转化为语音输出。本文不是讲述如何建立自己的TTS引擎，而是简单介绍如何运用MicrosoftSpeechSDK建立自己的文本语]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC6中使用CHtmlView在对话框控制中显示HTML文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7871267706989.html</link>
    <description><![CDATA[在VisualStudio6.0中出现了一个新类CHtmlView，利用这个类，我们可以实现在对话框的控制中显示HTML文件。要想使用CHtmlView类，对它的定义和实现就必须有全面深入的理解。我们不妨拿CHtmlV]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在VC中显示动态的GIF]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7861267706983.html</link>
    <description><![CDATA[如果是使用VB，也许这个话题是多余的，因为VB有一个图象控件可以非常容易地实现各种格式的图象显示功能，然而对于VC却没有一个象样的控件可以达到这种效果，怎么办？经过一段日]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[虚拟地景生成系统 1.1v 介绍]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7851267706981.html</link>
    <description><![CDATA[地图是空间信息的载体，是对空间信息的抽象化、符号化描述。二维地图以其宏观性、整体性、抽象性等优点，至今仍然是人们认识空间信息的重要工具。 随着计算机硬件与软件技术的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Direct3D9初级教程]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7841267706974.html</link>
    <description><![CDATA[这篇教程是为初学者准备的，只要会简单的VC++编程以及一点立体几何的基础知识即可。通过它，可以了解到Direct3D的基本概念，学会绘制简单的几何图形，并掌握光源、材质和纹理的基]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用OpenGL实现三维绘图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7831267706971.html</link>
    <description><![CDATA[在三维绘图蓬勃发展的过程中，计算机公司推出了大量的三维绘图软件包。其中SGI公司推出的OpenGL，作为一个性能优越的图形应用程序设计界面（API）异军突起，取得了很大的成就。它]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[OpenGL入门介绍]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7821267706967.html</link>
    <description><![CDATA[1、OpenGL简介 OpenGL是近几年发展起来的一个性能卓越的三维图形标准，它是在SGI等多家世界闻名的计算机公司的倡导下，以SGI的GL三维图形库为基础制定的一个通用共享的开放式三维图形]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动画窗口的实现－VC++实例一则]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7811267706963.html</link>
    <description><![CDATA[本文通过对AnimateWindow函数的分析，介绍动画窗口的实现原理，同时指出了在运用AnimateWindow函数时在编译中会遇到的一些问题以及处理方法。 关键词：动画窗口，AnimateWindow，MSDN 一、引]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[规则迷宫的一种求解思想及算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7801267706960.html</link>
    <description><![CDATA[摘要 本文通过将规则迷宫映射为迷宫矩阵,在迷宫矩阵中搜索迷宫路径,最后再将迷宫矩阵中的标记的路径在迷宫图中画出来.本文给出了给出了详细的搜索算法和具体的图像实现方法,供大]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[坐标变换]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7791267706957.html</link>
    <description><![CDATA[摘要 坐标变换是图形学中很基本的操作。无论绘制二维还是三维图形都会遇到。下面将会讲到： 如何根据坐标架进行点的坐标变换。 如何根据坐标架生成变换矩阵。 如何通过矩阵作点]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[具有多种动态效果的闪屏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7781267706957.html</link>
    <description><![CDATA[闪屏的使用在各类软件中很常见，但具有动态效果的却不多见。今天不小心由ACDSee制作的屏保中得到一些灵感并参照了李建湘写的《闪屏图形特技效果的实现》，特提出来与大家探讨，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在你的MFC应用程序中显示一个JPG文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7771267706952.html</link>
    <description><![CDATA[C/C++程序员能够使用与VB程序员所使用的非常类似（可以说是差不多）的图像控件。我并没有开玩笑。VB图像控件是基于一个叫IPicture的系统COM类（如Figure1所示）。IPicture管理一个图像对]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用DirectShow抓取影片帧]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7761267706947.html</link>
    <description><![CDATA[很多视频播放软件或视频编辑软件都提供了抓帧的功能，利用这类软件，视频工作者可以很轻松地将一个电影某一时刻的帧抓取出来并保存为图片文件，那么，我们如何自己编程实现这]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WINCE下小游戏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7751267706946.html</link>
    <description><![CDATA[首先感谢VCKBASE无偿提供的交流环境和众多XDJM们提供的无私的帮助，我在此收益颇丰。最近因为工作上一个PDA嵌入式的项目，恶补了一些这方面的知识，回头感觉走了不少弯路，所以写]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[地图比例尺绘制]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7741267706945.html</link>
    <description><![CDATA[地图比例尺是地图当中不可缺少的元素。在地理信息系统软件的设计与开发过程中，如何绘制地图比例尺是一个需要认真解决的问题。在解决过程中有如下几个问题需要提出： １、采用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一款简单的RPG游戏]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7731267706940.html</link>
    <description><![CDATA[大家好，这是我第一次写这种游戏，有什么不正确的地方希望大家能够指出来，我的这个游戏的图片全部来自网络上面的一个英雄救美的RPG游戏，但是，我下载后发现不能运行，我就用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于《黑白棋》网络版的开发文档和使用说明]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7721267706940.html</link>
    <description><![CDATA[本程序是在已有的《黑白棋》基础上实现的网络版，通过Winsocket实现了进程的同步。 本源程序有比较详细的注释，适合于大家参考。整个程序分为如下几个部分： 一、应用程序的框架结]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单字体察看器的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7711267706938.html</link>
    <description><![CDATA[前言 以前喜欢没事做做网页，不怕各位见笑，都是很简单的那种静态的，有一个很头疼的问题就是字体的选择，而且很多软件在做的时候看不到字体的例子，现在学了点VC++于是就像自己]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC中的图象打印问题]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7701267706933.html</link>
    <description><![CDATA[在VCkbase论坛中朋友的帮助下，我终于完成了对图象的打印操作，在此，将其全部奉上，以满足与我有同样经历的朋友的需要.在这里，我要特别感谢VCKbase中的LiuRong! 另外，由于这是我的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实时语音通信的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7691267706931.html</link>
    <description><![CDATA[引言 本人虽已学习VC++一年半载，仍觉捉襟见肘，好在有VCKBASE的帮忙，确实学到了不少东西，www.vckbase.com也成了我每次上民网必到之处（阁下有所不知，鄙人接受最为严格的管理，上民]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通用图像类算法扩充库]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7681267706926.html</link>
    <description><![CDATA[这是一个比较另类的图像库，它本身并不提供对图像对象的封装，只以类似插件的形式为您提供图像处理算法的封装和进度显示，而图像对象的封装则需由用户来提供。本图像库平台无]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模拟 Windows 开机动态色带条]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7671267706926.html</link>
    <description><![CDATA[一、首先使用ResHacker将NTOSKRNL.EXE中的资源HACK出来，安装过ResHacker后，找到系统目录下的NTOSKRNL.EXE，然后打开文件，在位图资源处找到我们需要的Windows开机画面，然后用保存资源成BMP的方]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己写 FILTER 改变画面颜色]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7661267706923.html</link>
    <description><![CDATA[directxshow的帮助文档是一个很好的参考资料。可是里面的很多东西都讲得太多了，而我们在开始接触的时候，都想从最简单的东西入手，然后逐渐深入，可是参考SDK里面的例子程序，总]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[C++实现CD抓轨转WAV]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7651267706919.html</link>
    <description><![CDATA[现在介绍一下C++实现CD抓轨转WAV,CD抓轨的方法有好几种，现在介绍其中一种。我们可以通过API函数CreateFile获得设备句柄，再用API函数DeviceIoControl来实现对设备的访问获取信息。再此还会]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用SDK实现智能五子]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7641267706916.html</link>
    <description><![CDATA[网上有很多的实现五子棋的算法，如利用规则法，递归法，博弈树法来实现五子棋的，上次我写了一篇利用SDK实现迷宫算法的文章——“老调重提,利用SDK实现迷宫算法”，这次还是同样]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[定时显示远程计算机的桌面]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7631267706913.html</link>
    <description><![CDATA[一、前言 看了大家写了这么多的代码，自己也想贡献一点。呵呵，很多的时候我们在qq的时候都想看看和自己聊天的对方在和哪些人聊天，有什么办法没有？直接一点的就是截获对方的]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用 DirectShow 开发自己的 Filter]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7621267706911.html</link>
    <description><![CDATA[学习directshow已经有几天了，下面将自己的学习心得写下来，希望对其他的人有帮助。Filter实质是个COM组件，所以学习开发Filter之前你应该对com的知识有点了解。Com组件的实质是一个实现]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[点对点视频会议程序:VideoNet]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7611267706908.html</link>
    <description><![CDATA[该程序可以用于两个人在LAN/Intranet(或者Internet)上进行视频会议。现在有许多视频会议程序，每个都有各自的性能提升技术。主要的问题是视频会议视频帧的尺寸对于传输来说太大。因此]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用GDI+在内存中转换图片类型]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7601267706905.html</link>
    <description><![CDATA[图片类型的转换支持：bmp、dib、png、gif、jpeg/jpg、tiff、emf等。以下是详细步骤。 首先，在StdAfx.h中静态调用diplus.lib，即由编译系统完成对DLL的加载，应用程序结束时卸载DLL的编码。如下]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图像与文字的合成]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7591267706904.html</link>
    <description><![CDATA[前几天要做一段程序，把文字和位图图像合成并保存为位图文件。但问了好久都没人给一个满意的答复，只好在黑暗中摸索，费了一番功夫,实现了图像与文字的合成，并且可用鼠标拖动]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC实现自绘图形输出到bmp文件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7581267706902.html</link>
    <description><![CDATA[在用vc做程序时候，经常需要把输出的文本和图形保存到位图文件，当然可以有现成的控件来实现,但总不能如自己所愿，还是自己动手写吧！如下图： 一、实现方法 要把文本和图形保]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[视频采集]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7571267706901.html</link>
    <description><![CDATA[前一段时间写的“实时语音通信”，朋友们给了我很大鼓励，甚感欣慰！但是就那个程序，现在让我困苦不堪。在这里恳请高手帮助解决这些问题： 1、回放问题，仍然没有实现的双缓]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC实现波形不闪烁动态绘图]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7561267706897.html</link>
    <description><![CDATA[一、程序运行时波形效果 二、在信号处理中，通常需要把采集信号的实时波形显示出来。如果直接在屏幕上动态绘图的话，会出现闪烁现象，为了克服这个问题，本文采用的就是先在内]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用VC＋＋开发ASP图像处理组件（一）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7551267706890.html</link>
    <description><![CDATA[一、VC++中的DC环境及GUI有关的各种对象 在Windows中有各种图形用户界面GUI(GraphicsUserInterface)对象，当我们在进行绘图时就需要利用这些对象。而各种对象都拥有各种属性，下面首先介绍几]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用VC＋＋开发ASP图像处理组件（二）]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7541267706890.html</link>
    <description><![CDATA[三、COM组件接口设计 前面我们在输入文本后，在程序中创建设备上下文，对输入的文本进行计算并输出了指定文件名的位图文件，在本设计中，我们使用了以JPEG压缩格式存储文件的方式]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC++游戏开发:五子棋]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7531267706887.html</link>
    <description><![CDATA[一、程序运行时情况 二、本程序里的计算机具有自动判断的功能，能根据当前棋子的布局情况采用相关的走子方式。为了避免在走子时候出现屏幕闪烁，采用双缓冲进行绘图输出，以下]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[我该使用何种语言]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7521267706882.html</link>
    <description><![CDATA[这是每个游戏编程FAQ里都有的问题。这个问题每星期都会在游戏开发论坛上被问上好几次。这是个很好的问题，但是，没人能给出简单的答案。在某些应用程序中，总有一些计算机语言]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[仿 Windows 自带扫雷的小程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7511267706882.html</link>
    <description><![CDATA[一直感觉Windows自带的扫雷程序挺有意思的。学习VC也有很长的时间了，一直没有真正的用心作过什么东西。决定先做个扫雷练练手。由于对MFC掌握的不是很好，程序中的小臭虫还希望各]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用微软的实时通信API集成丰富的客户端通信]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7501267706878.html</link>
    <description><![CDATA[学习如何创建或集成实时通信（RTC）应用编程接口（API）的基本知识以实现音视频会议、应用程序共享、白板、简单的点对点聊天和音视频调节向导。RTCAPI提供了卓越的基于PC的通信革新]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft Windows 实时通信(RTC)客户端的媒体支持]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7491267706875.html</link>
    <description><![CDATA[WindowsRTC客户端支持下表列出的音频编解码器（codec），同时列出了相关的采样率和比特率。选择哪一种编解码器取决于通信双方的能力和带宽。例如，如果其中一方使用56KBps的拨号连接]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带光圈文字输出的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7481267706873.html</link>
    <description><![CDATA[你可能会认为生成一个带柔和阴影的特效文字与生成一个带光圈的特效文字是完全不同的，其实他们所用到的技术是完全相同的，只是在设置上有些许变化。在带柔和阴影的效果中，我]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在A*寻路中使用二叉堆]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7471267706866.html</link>
    <description><![CDATA[译者序： 这一篇文章，是“A*PathfindingforBeginners”，也就是我翻译的另一篇文章“A*寻路初探”的补充，在这篇文章里，作者再一次展现了他阐述复杂话题的非凡能力，用通俗易懂的语句]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[GDI+编程(二)使用画笔]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7461267706866.html</link>
    <description><![CDATA[GDI+编程(二)使用画笔 画笔常用于绘制图形的轮廓.GDI+的画笔除了具有常见的色彩和宽度属性外,还具有对齐方式,线帽,变换方式等属性。GDI+中通过Pen类来定义画笔对象。 (一)、构造与使用]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[GDI+编程基础（一）GDI+ Vs GDI]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7451267706864.html</link>
    <description><![CDATA[一、GDI GDI是位于应用程序与不同硬件之间的中间层，这种结构让程序员从直接处理不同硬件的工作中解放出来，把硬件间的差异交给了GDI处理。GDI通过将应用程序与不同输出设备特性相]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态截获并显示窗口DC]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7441267706858.html</link>
    <description><![CDATA[我在网上看到很多屏幕截取的文章，相信大家也看过不少。人类每一次的进步总是建立在别人的基础之上，我今天要做得是如何将一个窗口动态地显示在另外一个窗口上。 方法很简单，]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[GDI+中的圆角矩形]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7431267706856.html</link>
    <description><![CDATA[GDI+是对GDI的一个令人兴奋的扩展，但由于某些原因，它没有提供绘制圆角矩形的函数，虽然我们可以在GDI+中使用GDI中的函数，但这样一来我们没办法在圆角矩形中使用GDI+中的纹理和透]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[A*寻路初探]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7421267706851.html</link>
    <description><![CDATA[译者序 很久以前就知道了A*算法，但是从未认真读过相关的文章，也没有看过代码，只是脑子里有个模糊的概念。这次决定从头开始，研究一下这个被人推崇备至的简单方法，作为学习]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[World space 到 Page space 的转换简介]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7411267706849.html</link>
    <description><![CDATA[一、坐标空间和Worldspace到Pagespace的转换 坐标空间是一个平面的，在上面图形都是以平面直角坐标定位的。应用程序借助坐标空间可以缩放，平移，剪切，镜像图形的输出。在WindowsGDI中]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种基于局域网的点对点语音通信]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7401267706846.html</link>
    <description><![CDATA[引言 随着计算机网络的日益普及，人们通过网络进行交流显得越来越重要，于是出现了一系列语音通信的软件，比如NetMeeting、IPPhone、MediaRing以及VoxPhone等等，但这些软件都功能完善、相]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止用户进行正常的GUI 操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7391267706842.html</link>
    <description><![CDATA[问题： 我在VC6.0中建立了一个SDI工程，工程中将主框架窗口切分为两个视图窗口。如何防止用户移动主窗口以及调整切分视图的大小？ 有时候总感觉对不起用户，原因是编程人员总是出]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VC6.0下自制多媒体播放器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7381267706842.html</link>
    <description><![CDATA[VC6.0可谓是微软的王牌产品，它以强大的功能而赢得了广大程序员的爱好。而用VC的AppWizard、ClassWizard和其中的各种控件可以方便地建立应用程序。本文就介绍用VC6.0自带的一个ActiveX控件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何制作具有声音效果的动画桌面精灵]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7371267706840.html</link>
    <description><![CDATA[你想制作出一个在桌面上透明显示，动态唱歌的桌面小精灵么？下面我来用我原来做的一个例子来教你如何来实现它。例子运行界面如下： 基本思路：采用透明位图方法在桌面上显示位]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何提取并保存图标资源]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7361267706835.html</link>
    <description><![CDATA[当你想要使用别的应用程序中的漂亮图标时，该怎么办呢？也许就会用到一些图标提取工具吧！那么，你知道它们是怎么实现的，想不想自己动手也做一个适合自己的图标提取工具呢？]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC中利用FLASH制作图声并茂的动画程序]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7351267706832.html</link>
    <description><![CDATA[（1）利用VB制作MSAGENT播放模块。 这里先插入MSAGENT模块。然后在Form_Load里进行Agent控件的初始化； PrivateSubForm_Load() Agent1.Characters.Load(dot) 下面就可进行动画操作了.Agent1.Characters.Characte]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VC调用ACM音频压缩编程接口的方法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7341267706830.html</link>
    <description><![CDATA[音频和视频数据是大多数多媒体应用程序向用户提供信息的主要方式，这些数据一般具有较高的采样速率，如果不经过压缩的话，保存它们需要消耗大量的存贮空间，在网络上进行传输]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用DirectShow驱动摄像头]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7331267706829.html</link>
    <description><![CDATA[对于小摄像头的驱动有几种方法，通过使用DirectShow来驱动摄像头灵活性比较好，有简单的方法也有比较复杂但更有效的方法，本文只介绍简单方法，希望与大家交流！用DirectShow来使用摄]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带阴影文字输出的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7321267706826.html</link>
    <description><![CDATA[一、正文 用GDI+的优秀图形输出功能可以非常方便的实现文字特效，其中一个带阴影的文字便是其中一例。 许多简单的文字特效只是简单的将文字用不同的颜色与不同的位置输出一次或]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[闪屏图形特技效果的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7311267706822.html</link>
    <description><![CDATA[在程序实际开发中，闪屏是我们经常用到的。如果程序初始化要一些时间，设计闪屏更加有必要，不但使你的程序也漂亮，还能在上面写上你的版本信息。好处是多多的。在VC++6.0组件库]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Image类的序列化]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7301267706820.html</link>
    <description><![CDATA[利用GDI+图形设备接口提供的Image类我们可以很方便地显示JPEG、GIF等文件格式的图片，但美中不足的是Image类未提供序列化数据的功能，如果要将从JPEG、GIF等格式的文件中读取的图片数据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浮动窗体中的OpenGL多视图的实现]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7291267706819.html</link>
    <description><![CDATA[一、OpenGL多视图的实现 平常我们的程序大部分都是建立一OpenGL设备上下文，但在本程序中，由于要实现三维实体的多视图观察功能，因此，需要建立多OpenGL设备上下文，并在需要的时候]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用GDI+进行图像处理]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7281267706817.html</link>
    <description><![CDATA[前段时间VCKBASE发布了一篇有关图像处理的文章“”，之后不断有人问我如何对图像进行旋转处理，也就是让用户歪着脖子看图像，用户的脖子拧断了怎么办？反正不会来找我...... 其实]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[位图的淡入淡出显示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7271267706815.html</link>
    <description><![CDATA[我们经常在AboutBox中显示一幅关于公司或自己讯息的位图，有没有想过让这幅位图有更酷的效果？比如加上淡入淡出效果？只要有了这个CAlphaCtrl控件就可以轻松实现。 CAlphaCtrl是从CStat]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在MFC程序中显示JPG/GIF图像]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7261267706813.html</link>
    <description><![CDATA[如果你是一个使用VB编程的程序员，要在程序中显示JPG或者GIF图像简直易如反掌，将图像控件拖到Form中，分分钟即可搞掂。但是C++程序员要显示同样的图形却没有那么轻松，那么是不是]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[池塘夜降彩色雨]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7251267706808.html</link>
    <description><![CDATA[一、问题描述： 本程序是利用MFC制作的微软基础类应用程序，目的是模拟彩色雨滴滴落到池塘的情景，达到彩色雨滴从天而降，入水有声（尽管不怎么好听），产生圈圈涟漪。 二、数据]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据文本串的长度改变窗口的大小]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7241267706807.html</link>
    <description><![CDATA[根据文本文件的内容，用CWin的子类对控制进行动态创建。在Create方法中，根据用户在显示属性对话框中选择的消息文本字体，用下列代码创建所有的控制： NONCLIENTMETRICSncm; ncm.cbSize=siz]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何播放 WAV 文件？]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7231267706805.html</link>
    <description><![CDATA[平时，你在多媒体软件的设计中是怎样处理声音文件的呢？使用Windows提供的API函数sndPlaySound来实现WAV文件的播放？但是，你有没有遇到过这种情况呢：当WAV文件大于可用内存时，sndPla]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个对话框里的动圆]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7221267706802.html</link>
    <description><![CDATA[一、新建一个基于对话框的程序 二、删除static将确定改为颜色。 三、在dlg头文件里用classwizard添加以下消息映射 afx_msgvoidOnExitButton();afx_msgvoidOnDestroy();afx_msgvoidOnTimer(UINTnIDEvent);afx_msgvoi]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用RealPlayer控件制作的播放器]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7211267706801.html</link>
    <description><![CDATA[本文介绍如何插入RealPlay控件实现媒体文件的播放，代码运行效果图如下： 下面简要介绍一下具体实现步骤： 一、建立基于对话框的程序 二、在对话框内添加RealPlayerG2control的ActiveX控件]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在资源文件中加入声音资源]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7201267706799.html</link>
    <description><![CDATA[本文介绍如何在VC资源文件中加入自己的声音资源，使自己的应用程序可以播放声音。 1，首先用文本编辑器（如记事本）打开资源文件(.rc文件) 在最后加入自己的声音资源，如下 IDWWA]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三元光栅操作]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7191267706793.html</link>
    <description><![CDATA[本文列出了供BitBlt、PatBlt和StretchBlt函数使用的三元光栅操作码。三元光栅操作码定义了如何合并源位图和目的位图的位。 每一光栅操作码都提供了一个布尔操作，也就是如何合并源位图]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[透明位图的显示]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7181267706793.html</link>
    <description><![CDATA[包含透明色的位图的绘制方法有多种，最简单的方法是调用现成的函数：TransparentBlt,也可以通过自己的代码实现类似TransparentBlt的功能，实现过程也有两种形式，一种是事先做一张掩码位]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图形显示特技算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7171267706785.html</link>
    <description><![CDATA[水平百叶窗：将图象分成若干等份，每次扫描各等份的1象素宽后Sleep一段时间，再扫描下一象素，直到每份的象素都扫描完。 雨滴效果：读入位图的最后一行象素，从屏幕的最上端开始]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[真彩色转成高彩色的快速算法]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7161267706784.html</link>
    <description><![CDATA[为什么要实时转换颜色深度? 通常,2D游戏中的位图,无论在外存中按什么颜色深度存放,加栽后都被转换成了需要的颜色深度.我们不太注意颜色深度转换说需要的时间. 但是,现在不同了.云]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用MFC构造DIRECTX应用框架]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7151267706780.html</link>
    <description><![CDATA[一、MFC类库与DirectXSDK MicrosoftDirectXSDK是开发基于Windows平台游戏的一个软件开发工具，其主要功能主要包括在五个组件中:DirectDraw、DirectSound、DirectPlay、Direct3D和DirectInput，每个组件都具不]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[和我一起写屏保]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7141267706777.html</link>
    <description><![CDATA[对于屏幕保护程序，大家应该不会陌生。屏幕保护程序的后缀名是.scr，其实它就是一个可执行的.exe文件。 VC提供了一个支持屏幕保护的开发库scrnsave.lib，这个库已经定制了一个屏幕保护]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松实现对外部位图的浏览]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7131267706775.html</link>
    <description><![CDATA[显示位图一般的方法是利用控件，利用Cdib类是一种不错的方法，可以打开外部位图，但手头没有Cdib类文件怎么办，对于咱们这些新手来说真是苦恼，近日发现一种简单的方法，利用AP]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[位图文件读写综述]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7121267706774.html</link>
    <description><![CDATA[一、位图文件结构 位图文件头 位图信息 2.1位图信息头 2.2颜色表 位图数据 二、位图文件读写操作 类的声明 位图的读取 位图读取过程中的调色板的创建和调用 位图的显示 位图的存储]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似画笔的绘图控件]]></title>
    <link>http://www.codeday.comhttp://document.codeday.com/vc/7111267706770.html</link>
    <description><![CDATA[想必大家都用过WINDOWS自带的画笔，这是一个小巧易用的软件。在业余时间，我模拟画笔自己开发了一个类似的程序（当然不如画笔那么功能丰富）。它主要完成的功能有画直线、曲线、]]></description>
    <pubDate>2010-03-04</pubDate>
    <category>VC文档</category>
    <author>admin</author>
    <comments>未知</comments>
</item>

</channel>
</rss>
