网上购物 货比三家
您现在的位置:快乐比价网 > 图书 > 计算机与网络 > 软件工程 > 商品详情

Windows Mobile应用程序开发实践(CX-5274)

分享到:
Windows Mobile应用程序开发实践(CX-5274)

最 低 价:¥36.80

定 价:¥49.00

作 者:范盛荣

出 版 社:科学出版社

出版时间:2006 年11月

I S B N:7030181190

商品详情

编辑推荐

内容简介

本书重点以evb(embedded visual basic)作为开发工具,深入探讨基于windows mobile平台应用程序开发的核心技术。.
  全书分为两大部分,共12章。第一部分系统地介绍了嵌入式系统和各种嵌入式操作系统的特点,windows mobile应用程序开发环境的配置及设置,并通过一个综合系统实例,把嵌入式领域的若干技术——ui技术、数据库技术、通信技术(串口、网络、iis、rda等)、图形控件技术、跨平台数据交换等技术都进行了详细讲解。第二部分则讨论了本书所使用的开发工具——evb中的所有控件、对象、属性、事件、函数和方法等基本语法,以及嵌入式程序的打包、安装等细节。内容详尽,由浅入深,同时给出各个知识点的应用示例,以便学用结合,可操作性强。..
  本书是新世纪、新领域——嵌入应用、移动应用以及新技术与软件开发的典范之著。适合广大高新技术软件设计与开发行业的技术人才,同时对初、中级用户,业余爱好者更有入门、升堂入室的导航功能。
  书中部分实例源代码可以从http://www.b-xr.com处按本书cx编号下载。 ...

作者简介

范盛荣,国内Windows移动开发专家,任职于武汉某专业移动设备软件开发企业。独立完成“掌上条码管理系统”开发;完成工业生产线某产品的开发;完成了工控机的BSP及NK裁剪工作以及管道煤气抄表系统的研发,系统均包含前台抄收和后台管理的整个构架及实现等项目,具有5年移动开发经验。
.. << 查看详细

目录

第一部分 windows mobile开发环境及实例
第1章 嵌入式系统与嵌入式操作系统3
1.1 嵌入式系统的发展.3
1.2 嵌入式系统定义及特点4
1.3 嵌入式数据库系统5
1.4 常见嵌入式操作系统7
1.4.1 windows ce 3.08
1.4.2 系统功能及服务9
1.4.3 windows ce .net16
1.4.4 windows ce 5.019
1.4.5 嵌入式linux29
1.4.6 其他嵌入式操作系统34
1.5 vxworks系统35
1.5.1 调试环境tornado36
1.5.2 通用嵌入式软件开发环境workbench37
1.5.3 中间件vxwin37
1.5.4 实时系统图形界面tilcon38
1.6 嵌入式系统选型与实现39
第2章 嵌入式开发工具evb41
2.1 embedded visual tools 3.041
.2.2 安装开发工具42
2.3 熟悉evb开发环境50
2.4 与vb6的区别52
2.5 与其他开发模型的接口53
2.6 项目管理54
2.6.1 使用远程工具54
2.6.2 平台及网络设置58
2.6.3 调试及错误处理59
2.6.4 开发环境设置59
2.7 简单的hello world实例62
第3章 综合油液监测系统64
3.1 项目开发思路64
3.1.1 开发环境64
3.1.2 项目开发原则64
3.2 项目开发过程66
3.2.1 需求分析66
3.2.2 模块设计66
3.2.3 项目界面设计66
3.2.4 模块体现及方案67
3.2.5 项目其他特性67
3.3 系统功能描述69
3.3.1 系统登录69
3.3.2 系统功能实现73
3.3.3 系统通信功能153
3.4 sql ce编程-rda177
3.4.1 rda原理与用法177
3.4.2 iis配置180
3.5 程序部署和安装194
3.5.1 安装和删除程序199
3.5.2 安装实例200
3.6 在mobile5上运行程序204
第二部分 evb语言及编程
第4章 evb运算符209
4.1 运算符优先级209
4.2 evb运算符209
4.2.1 相加运算符209
4.2.2 逻辑与运算符210
4.2.3 赋值运算符211
4.2.4 比较运算符211
4.2.5 连接运算符211
4.2.6 除运算符212
4.2.7 逻辑等运算符212
4.2.8 幂运算符212
4.2.9 imp运算符213
4.2.10 整除运算符213
4.2.11 is运算符213
4.2.12 mod运算符214
4.2.13 乘运算符214
4.2.14 逻辑非运算符214
4.2.15 逻辑或运算符214
4.2.16 减运算符215
4.2.17 逻辑异或运算符215
4.2.18 不支持的运算、方法及事件216
第5章 常量(constants)218
5.1 alignment218
5.2 borderstyle218
5.3 颜色常数219
5.4 通用对话框错误219
5.5 比较常数219
5.6 日期和时间220
5.7 日期格式220
5.8 图形常数221
5.9 grid221
5.10 vartype224
5.11 listview224
5.12 menubar226
5.13 msgbox226
5.14 string227
5.15 tabstrip228
第6章 声明(statements)229
6.1 call语句229
6.2 class语句229
6.3 dim语句230
6.4 do...loop语句230
6.5 erase语句231
6.6 execute语句231
6.7 executeglobal语句232
6.8 exit语句233
6.9 for each...next语句234
6.10 for...next语句235
6.11 function语句235
6.12 if...then...else语句237
6.13 on error语句237
6.14 option explicit语句238
6.15 private语句239
6.16 public语句239
6.17 randomize语句239
6.18 redim语句240
6.19 rem语句240
6.20 select case语句241
6.21 set语句241
6.22 sub语句242
6.23 while...wend语句243
第7章 事件(events)245
7.1 a类事件245
7.1.1 activate245
7.1.2 afterlabeledit245
7.2 b类事件245
7.2.1 beforelabeledit245
7.2.2 buttonclick246
7.3 c类事件246
7.3.1 change246
7.3.2 click246
7.3.3 close247
7.3.4 collapse247
7.3.5 columnclick247
7.3.6 comboboxchange247
7.3.7 comboboxclick247
7.3.8 compare247
7.3.9 connect(winsock)248
7.3.10 connectionrequest248
7.4 d类事件248
7.4.1 dataarrival248
7.4.2 dblclick248
7.4.3 deactivate248
7.4.4 dropdown248
7.5 e类事件249
7.5.1 entercell249
7.5.2 error249
7.5.3 expand250
7.6 g类事件250
7.7 i类事件250
7.8 k类事件251
7.8.1 keydown251
7.8.2 keypress251
7.8.3 keyup251
7.9 l类事件252
7.9.1 leavecell252
7.9.2 load252
7.9.3 lostfocus252
7.10 m类事件252
7.10.1 menuclick252
7.10.2 mousedown252
7.10.3 mousemove253
7.10.4 mouseup253
7.11 n类事件253
7.11.1 newclick253
7.11.2 nodeclick253
7.12 o类事件254
7.12.1 oncomm254
7.12.2 okclick254
7.13 p类事件254
7.14 q类事件254
7.15 r类事件254
7.15.1 resize254
7.15.2 rowcolchange255
7.16 s类事件255
7.16.1 scroll (grid)255
7.16.2 scroll (intrinsic)255
7.16.3 selchange255
7.16.4 sendcomplete255
7.16.5 sendprogress256
7.16.6 sipchange256
7.17 t类事件256
7.17.1 terminate256
7.17.2 timer256
7.18 u类事件256
第8章 方法(methods)257
8.1 a类方法257
8.1.1 accept257
8.1.2 add(commandbar)257
8.1.3 add(columnheader)257
8.1.4 add(imagelist)258
8.1.5 add(items)258
8.1.6 add(listitems)258
8.1.7 add(nodes)258
8.1.8 add(tabs)259
8.1.9 addbutton259
8.1.10 additem259
8.1.11 addmenu259
8.2 c类方法260
8.2.1 clear(clipboard, combobox, listbox)260
8.2.2 clear(columnheader, listitem, nodes)260
8.2.3 clear(err)..260
8.2.4 clear(grid)260
8.2.5 clear(items)260
8.2.6 clear(menucontrols)260
8.2.7 close(file)260
8.2.8 close(winsock)260
8.2.9 cls261
8.2.10 connect261
8.3 d类方法261
8.3.1 ddb261
8.3.2 dir261
8.3.3 drawcircle261
8.3.4 drawline262
8.3.5 drawline(picturebox)262
8.3.6 drawpicture262
8.3.7 drawpoint262
8.3.8 drawtext262
8.4 e类方法263
8.4.1 end263
8.4.2 endwaitforevents263
8.4.3 ensurevisible263
8.5 f类方法263
8.5.1 filecopy263
8.5.2 filedatetime263
8.5.3 filelen263
8.5.4 finditem264
8.5.5 fv264
8.6 g类方法265
8.6.1 get265
8.6.2 getattr265
8.6.3 getdata265
8.6.4 getfirstvisible266
8.6.5 getformat266
8.6.6 gettext266
8.6.7 getvisiblecount266
8.7 h类方法266
8.8 i类方法267
8.8.1 input267
8.8.2 inputb267
8.8.3 inputfields267
8.8.4 ipmt267
8.8.5 irr267
8.9 k类方法268
8.10 l类方法268
8.10.1 lineinputstring268
8.10.2 lineprint268
8.10.3 listen268
8.11 m类方法268
8.11.1 mirr268
8.11.2 mkdir269
8.11.3 move269
8.11.4 movefile269
8.12 n类方法269
8.12.1 nper269
8.12.2 npv270
8.13 o类方法270
8.14 p类方法270
8.14.1 pmt270
8.14.2 point270
8.14.3 pointset271
8.14.4 ppmt271
8.14.5 put271
8.14.6 pv271
8.15 r类方法271
8.15.1 raise271
8.15.2 rate272
8.15.3 refresh272
8.15.4 remove(imagelist)272
8.15.5 remove(items of collection)272
8.15.6 removeall(imagelist)272
8.15.7 removeitem272
8.15.8 replace272
8.15.9 reset272
8.15.10 rr272
8.16 s类方法273
8.16.1 scalex273
8.16.2 scaley273
8.16.3 senddata273
8.16.4 setattr273
8.16.5 setfocus273
8.16.6 setscale273
8.16.7 settext273
8.16.8 show274
8.16.9 showcolor274
8.16.10 showfont274
8.16.11 showhelp274
8.16.12 showopen274
8.16.13 showsave274
8.16.14 sln274
8.16.15 startlabeledit274
8.16.16 syd274
8.17 t类方法275
8.17.1 textheight275
8.17.2 textwidth275
8.18 w类方法275
8.18.1 writefields275
8.18.2 waitforevents275
8.19 z类方法275
第9章 函数(functions)276
9.1 a类函数276
9.1.1 abs276
9.1.2 array276
9.1.3 asc276
9.1.4 atn277
9.2 c类函数277
9.2.1 cbool277
9.2.2 cbyte277
9.2.3 ccur278
9.2.4 cdate278
9.2.5 cdbl278
9.2.6 chr279
9.2.7 cint279
9.2.8 clng279
9.2.9 cos280
9.2.10 createobject280
9.2.11 createobjectwithevents281
9.2.12 csng281
9.2.13 cstr281
9.3 d类函数282
9.3.1 date282
9.3.2 dateadd282
9.3.3 datediff283
9.3.4 datepart284
9.3.5 dateserial284
9.3.6 datevalue285
9.3.7 day285
9.3.8 disconnectevents285
9.4 e类函数285
9.5 f类函数286
9.5.1 filter286
9.5.2 fix286
9.5.3 formatcurrency286
9.5.4 formatdatetime287
9.5.5 formatnumber287
9.5.6 formatpercent288
9.6 h类函数288
9.6.1 hex288
9.6.2 hour288
9.7 i类函数289
9.7.1 inputbox289
9.7.2 instr289
9.7.3 instrrev290
9.7.4 int291
9.7.5 isarray291
9.7.6 isdate291
9.7.7 isempty292
9.7.8 isnull292
9.7.9 isnumeric292
9.7.10 isobject293
9.8 j类函数293
9.9 l类函数293
9.9.1 lbound293
9.9.2 lcase294
9.9.3 left294
9.9.4 len294
9.9.5 loadresstring294
9.9.6 log295
9.9.7 ltrim、rtrim和trim295
9.10 m类函数295
9.10.1 mid295
9.10.2 minute296
9.10.3 month296
9.10.4 monthname296
9.10.5 msgbox296
9.11 n类函数298
9.12 o类函数298
9.13 r类函数298
9.13.1 replace298
9.13.2 rgb299
9.13.3 right299
9.13.4 rnd300
9.13.5 round300
9.14 s类函数301
9.14.1 scriptengine301
9.14.2 scripting edition301
9.14.3 scriptenginebuildversion301
9.14.4 scriptenginemajorversion302
9.14.5 scriptengineminorversion302
9.14.6 second302
9.14.7 sgn302
9.14.8 sin303
9.14.9 space303
9.14.10 split303
9.14.11 sqr304
9.14.12 strcomp304
9.14.13 string305
9.14.14 strreverse305
9.15 t类函数305
9.15.1 tan305
9.15.2 time305
9.15.3 timer306
9.15.4 timeserial306
9.15.5 timevalue306
9.15.6 typename307
9.16 u类函数307
9.16.1 ubound307
9.16.2 ucase308
9.17 v类函数308
9.18 w类函数309
9.18.1 weekday309
9.18.2 weekdayname309
9.19 y类函数309
第10章 对象(objects)311
10.1 a类对象311
10.2 c类对象313
10.2.1 clipboard313
10.2.2 columnheader315
10.2.3 columnheaders317
10.3 e类对象320
10.4 f类对象323
10.4.1 font323
10.4.2 form324
10.5 i类对象328
10.5.1 item328
10.5.2 items328
10.6 l类对象331
10.7 m类对象336
10.7.1 menu336
10.7.2 menus339
10.8 n类对象342
10.8.1 node342
10.8.2 nodes351
10.9 r类对象354
10.10 s类对象354
10.11 t类对象358
10.11.1 tab358
10.11.2 tabs360
第11章 evb常见控件用法363
11.1 c类控件363
11.1.1 checkbox363
11.1.2 combobox371
11.1.3 comm376
11.1.4 commandbutton379
11.1.5 commondialog380
11.2 d类控件385
11.3 f类控件397
11.3.1 file397
11.3.2 finance404
11.3.3 frame405
11.4 i类控件405
11.4.1 image406
11.4.2 imagelist406
11.5 l类控件407
11.5.1 label407
11.5.2 line408
11.5.3 listbox410
11.5.4 listview414
11.6 o类控件419
11.7 p类控件419
11.8 s类控件424
11.8.1 scrollbar424
11.8.2 shape426
11.9 t类控件426
11.9.1 tabstrip427
11.9.2 textbox429
11.9.3 timer430
11.9.4 treeview431
11.10 w类控件436
11.11 winsock运行原理438
11.11.1 建立服务器端438
11.11.2 建立客户端439
第12章 嵌入式数据库技术441
12.1 基础知识441
12.1.1 ado ce接口441
12.1.2 创建数据库446
12.1.3 创建数据表447
12.1.4 修改数据表452
12.1.5 增加字段455
12.1.6 删除字段460
12.1.7 字段重命名463
12.1.8 创建索引467
12.1.9 删除索引470
12.1.10 删除数据表475
12.1.11 删除数据库477
12.2 connection对象479
12.2.1 属性480
12.2.2 方法481
12.3 field对象483
12.4 recordset对象...491

商品评论(0条)

暂无评论!

您的浏览历史

loading 内容加载中,请稍后...