摘要: ??? 出于对ms office 2003界面研究的兴趣,最近收集了如何提取office 2003工具栏图标的相关链接并加以翻译整理,相信对此感兴趣的不止我一个,特此共享。 1.为何? 界面标准化的最好办法就是与ms保持一致,而office2003图标非常漂亮并且很完整 现有资源提取工具无法从office2003相关文件中提取工具栏图标 手工截屏工作量大、尺寸不准确、无法完整保持32位色(8位alpha通道) 2.条件 已安装offfice 2003 下......
摘要:如果你曾经用过perl或任何其他内建正则表达式支持的语言,你一定知道用正则表达式处理文本和匹配模式是多么简单。如果你不熟悉这个术语,那么“正则表达式”(regular expression)就是一个字符构成的串,它定义了一个用来搜索匹配字符串的模式。 许多语言,包括perl、php、python、javascript和jscript,都支持用正则表达式处理文本,一些文本编辑器用正则表达式实现高级“搜索-替换”功能。那么java又怎样呢?本文写作时,一个包含......
哈夫曼编/译码演示系统的C程序 /*==============================================*//* */ 【相关文章:
《c++ primer》读书笔记1】 【扩展阅读:
《c++ primer》读书笔记 说明】/* huffman.c(pp) - a huffman arithmetic demonstration */ 【扩展信息:
《c++ primer》读书笔记2】 /* smith_135@163.com */ /* qq: 58101543 */ /* version 0.9 */ /* copyright (c) meteor135 */ /* 2004.7.13 */ /* */ /*==============================================*/ #include <stdio.h> #include <stdlib.h> #ifdef __cplusplus #include <conio.h> #include <ctype.h> #include <string.h> #endif /*__cplusplus*/ /*树结构与全局结构指针*/ struct node { int num;/*结点编号*/ char c; int weight; int parent; int lchild,rchild; } * ht; /*常量文件名*/ const char *tablefilename = "hfmtbl.txt"; const char *sourcefilename = "srctext.txt"; const char *codefilename = "hfmcode.txt"; const char *decodefilename = "decodetext.txt"; const char *treeviewfilename = "treeview.txt"; /*打印格式字符串常量*/ const char *printformatstr = "%4d %13c %13d %13d %13d %13d\r\n"; /*读取格式字符串常量*/ const char *readformatstr = "%d %c %d %d %d %d"; /*打印参数宏*/ #define print_param(i) ht[(i)].num,ht[(i)].c,ht[(i)].weight,\ ht[(i)].parent,ht[(i)].lchild,ht[(i)].rchild /*读取参数宏*/ #define read_param(i) &ht[(i)].num,&ht[(i)].c,&ht[(i)].weight,\ &ht[(i)].parent,&ht[(i)].lchild,&ht[(i)].rchild /*打印格式与参数宏*/ #define read_format_param(i) readformatstr,read_param(i) /*读取格式与参数宏*/ #define print_format_param(i) printformatstr,print_param(i) /************************************************************/ ...
下一页 摘要:asp.net呢?2.0向下兼容的,可以一直运行,唯一的就是2003的调试将失败,要解决的话可以反安装iis的asp2支持,重新安装1.x,2005就用他自带的web服务器调试,大家都好:d让.net 1.1不受安装vs2005影响,你得重新注册一下你的.net 1.1到iis,记住,-i/-r分别运行一下。 参考网址:http://community.csdn.net/expert/topic/3162/3162720.xml?temp=.8393213......