平装: 112页 语种: 简体中文, 英语 开本: 16
目录
第1章 程序设计基础 Programming Basics 1 1.1 Visual Basic历史简介 Brief History of Visual Basic 1 1.2 VB 2008综合程序设计环境 VB 2008 Integrated Development Environment (IDE) 2 1.3 两个简单的程序设计实例 Two Simple Program Examples 2 1.4 常量、变量以及命名方法 Constants, Variables and Their Naming Rules 6 1.4.1 命名规则 Naming Rules 7 1.4.2 常量 Constants 7 1.4.3 保留字 Keywords 8 1.4.4 基本数据类型 Primitive Data Types 8 1.4.5 变量 Variables 9 1.5 表达式 Expressions 9 1.5.1 赋值语句 Assignment Command 10 1.5.2 算术运算符 Arithmetic Operators 10 1.5.3 基本数学函数 Common mathematical functions 11 1.5.4 布尔表达式 Boolean expressions 11 1.5.5 关系表达式 Relational expressions 13 1.5.6 计算优先级 Precedence of a mixed expression 13 1.6 第1章小结 Chapter 1 Summary 14 习题 Exercises 14
第2章 常用程序设计语句 Common Programming Commands 16 2.1 赋值语句 Assignment Command 16 2.2 输入、输出语句 Input and Output Commands 16 2.3 算术计算语句 Arithmetic Calculation Commands 17 2.4 选择执行语句 Selection Commands 18 2.4.1 If语句 If Command 18 2.4.2 嵌入If指令 Nested If Statement 21 2.4.3 选择命令 Select ... Case 22 2.5 循环控制语句 Loop Control Commands 24 2.5.1 For语句 For Command 24 2.5.2 While语句 While Command 25 2.5.3 Do While语句 Do While Command 26 2.5.4 Do Until语句 Do Until Command 27 2.6 第2章小结 Chapter 2 Summary 27 习题 Exercises 27
第3章 简单的数据结构:数组 Simple Data Structure:Arrays 29 3.1 数组的概念 Concept of Arrays 29 3.2 一维数组 One Dimensional (1D) Arrays 29 3.3 二维数组 Two Dimensional (2D) Arrays 31 3.4 多维数组 Multi Dimensional Arrays 32 3.5 数组的特殊存储方法 The Special Way to Store an Array 33 3.6 第3章小结 Chapter 3 Summary 34 习题 Exercises 34
第4章 子程序 Sub-Programs 36 4.1 子程序的概念 Concept of Sub-Programs 36 4.2 过程的设计和调用 Procedures'' Design and Calling 36 4.3 函数的设计和调用 Functions'' Design and Calling 38 4.4 嵌套子程序调用和递归 Nested Sub-program Calling and Recursion 39 4.5 类型 Class 40 4.6 第4章小结 Chapter 4 Summary 42 习题 Exercises 42
第5章 图形化用户界面控件 Graphical User Interface (GUI) Controls 46 5.1 输入、输出控件 Input and Output (I/O) Controls 46 5.2 选择控件 Selection Controls 48 5.3 时间控件 Timing Controls 51 5.4 图形控件 Graphical Controls 53 5.5 网络控件 Web Related Controls 57 5.6 第5章小结 Chapter 5 Summary 58 习题 Exercises 58
第6章 事件驱动的程序设计概念 Event Driven Programming Concept 63 6.1 程序启动事件 Program Loading Event 63 6.2 输入内容改变事件 Input Content Changing Event 64 6.3 鼠标单击事件 Mouse Clicking Event 65 6.4 鼠标移动事件 Mouse Moving Event 67 6.5 时间事件 Timing Event 68 6.6 第6章小结 Chapter Summary 70 习题 Exercises 70
附录A 习题解答 Exercises Solutions 73 A.1 第1章题解 Chapter 1 Exercise Solutions 73 A.2 第2章题解 Chapter 2 Exercise Solutions 74 A.3 第3章题解 Chapter 3 Exercise Solutions 77 A.4 第4章题解 Chapter 4 Exercise Solutions 78 A.5 第5章题解 Chapter 5 Exercise Solutions 79 A.6 第6章题解 Chapter 6 Exercise Solutions 86
附录B 词汇索引 Index 110 参考文献 |