• MFC图表自定义控件

    MFC 自定义控件,用来对输入的一组数据画出折线图,并且可以查看数据,保存数据和截图。

    5
    336
    61KB
    2011-09-26
    50
  • MFC 自定义控件 GridView

    自己写的MFC的自定义控件,实现了类似于GridView的表格。继承自CEdit,上传希望对大家有帮助。

    5
    236
    5.68MB
    2011-07-07
    41
  • Smarty 中文手册

    Smarty 中文手册 Table of Contents [内容列表] Preface [序] I. Getting Started [开始] 1. What is Smarty? [什么是Smaty?] 2. Installation [安装] Requirements [安装] Basic Installation [基本安装] Extended Setup [扩展设置] II. Smarty For Template Designers [模板设计者篇] 3. Basic Syntax [基本语法] Comments [注释] Functions [函数] Attributes [属性] Embedding Vars in Double Quotes [双引号里值的嵌入] Math [数学运算] 4. Variables [变量] Variables assigned from PHP [从PHP分配的变量] Variables loaded from config files [从配置文件读取的变量] {$smarty} reserved variable [{$smarty}保留变量] 5. Variable Modifiers [变量调节器] capitalize [首字符大写] count_characters [字符计数] cat [连接字符串] count_paragraphs [计算段数] count_sentences [计算句数] count_words [计算词数] date_format [格式化日期] default [默认值] escape [编码] indent [缩进] lower [小写] nl2br [换行符替换成 <br />] regex_replace [正则替换] replace [替换] spacify [插空] string_format [字符串格式化] strip [去除(多余空格)] strip_tags [去除html标签] truncate [截取] upper [大写] wordwrap [行宽约束]

    0
    37
    358KB
    2010-04-30
    4
  • C语言编写 词法分析器

    include <stdio.h> #include <ctype.h> #include <string.h> #include "defineclass.h" char TOKEN[20]; char MATCH[NUM][10]={"begin","end","if","then","else"};/*some new key words attached*/ extern int lookup(char* str) { for(int i=0;i<NUM;i++) { if(!strcmp(str,MATCH[i])) { return i+1; } } return 0; } extern void out(int c,char* value) { printf("(%d,%s)\n",c,value); } extern void report_error(void) { printf("Error!!!!\n"); } void scanner_example(FILE *fp) { char ch; int i,c; ch=fgetc(fp); while(ch!=EOF)

    0
    672
    181KB
    2008-12-05
    35
关注 私信
上传资源赚积分or赚钱