- 浏览: 44138 次
- 性别:
- 来自: 沈阳
最新评论
文章列表
为控件添加Tooltip
- 博客分类:
- C
/*************************************************
Function: CreateToolTip
Description: 在父类容器中为子控件添加Tooltip
Input: int toolID 控件ID
HWND hDlg
TCHAR* pText
Output: NULL
Return: NULL
******************************* ...
- 2009-09-15 18:46
- 浏览 1778
- 评论(0)
此文记录《C++沉思录》 一书中的代理章节中的代码。
/******************************************************************************
Module: surrogate.h
Purpose: 代理是为了解决继承和容器问题而提出的。容器只能容纳同种类型的对象。
而在继承层次里面有多种变量类型,虽然他们相互关联,也不能找到一个很
有效的办法将之放入容器,传统的方法是以指针作为中间层,在容器内部存
储指针,而这样又会带来内存管理的麻烦。在C++里面,通常采 ...
- 2009-09-02 20:09
- 浏览 777
- 评论(0)
Subclassing is a technique that allows an application to intercept and process messages sent or posted to a particular window before the window has a chance to process them. This is typically done by replacing the Window Procedure for a window with application-defined window procedure.
子类化是一种允许应用程序 ...
- 2009-08-24 19:15
- 浏览 949
- 评论(0)
Accelerated C++ Practical Programming by Example 的学习笔记
这是Andrew Koenig and Barbara E. Moo合著的一本C++入门书
- 2009-06-17 14:10
- 浏览 1192
- 评论(0)
java 解析xml实例
import java.io.*; //Java基础包,包含各种IO操作
import java.util.*; //Java基础包,包含各种标准数据结构操作
import javax.xml.parsers.*; //XML解析器接口
import org.w3c.dom.*; //XML的DOM实现
import org.apache.crimson.tree.XmlDocument;//写XML文件要用到
public class XMLTest{
public static Vector<StudentInfo> ge ...
- 2009-06-15 11:10
- 浏览 1628
- 评论(0)
linux下处理windows格式的文件
1、chm文件
chmsee
Unix/Linux 下的 HTML Help(CHM) 阅读工具
http://chmsee.gro.clinux.org
CHM 阅读器
压缩 HTML 帮助文档阅读器
- 2009-06-13 21:34
- 浏览 804
- 评论(0)
Applied Cryptography By Bruce SchneierArt Of Assembly By Randall HydeBorland C++ Builder 实用培训教程 C 与 C++ 中的异常处理C 语言编程手册 C++ Builder 4技术内幕 C++ Builder高级编程技术 C++ In ActionC++ Primer C++ Primer PlusC++ 标准程序库 By Josuttis C++ 标准库 C++ 沉思录C++ 程序设计教程 钱能C++ 经典对话系列 C++ 批判(看看c++的坏话)C++沉思录 By Andrew Koenig ...
- 2009-04-15 21:48
- 浏览 1071
- 评论(0)