{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

21天学通Visual Basic(第4版)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

21天学通Visual Basic(第4版)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

◆基础知识-》核心技术-》典型案例-》综合练习-》项目案例
◆161个典型实例,1个项目案例,84个练习题
◆一线开发人员全程贴心讲解,轻松上手与提高
◆超值DVD内含12小时多媒体教学视频,以及丰富赠品!


优秀相关图书推荐:

《21天学通C++(第4版)》

《21天学通C语言(第4版)》

《21天学通Java(第4版)》

《21天学通JavaScript(第4版)》

《21天学通Visual Basic(第4版)》

《21天学通Visual C++(第4版)》

《21天学通HTML5+CSS3》

《21天学通Python》


Content Description

《21天学通Visual Basic(第4版)》是Visual Basic 6.0 的入门教程,主要针对没有程序设计基础的读者,详细介绍了Visual Basic 6.0的基本概念和编程技术。书中通过大量的范例及综合练习来介绍Visual Basic 6.0 的基本概念、语言特点、基本的程序设计方法,以及应用程序的设计步骤。《21天学通Visual Basic(第4版)》在内容讲解上力求形象生动、深入浅出,使读者能够较轻松地理解基本概念。通过对基本概念的理解和自己动手编程,读者能快速掌握Visual Basic 6.0基本的程序设计方法。

《21天学通Visual Basic(第4版)》共21 章,主要内容包括Visual Basic 6.0 集成开发环境、Visual Basic 6.0 语言基础、程序控制结构、数组、过程和函数、应用程序用户界面、控件、菜单、文件系统、图形与图像、多媒体技术、网络通信技术、API 函数应用、ActiveX 控件、程序的调试与除错、数据库系统与SQL 语言、ADO 数据库编程、VB 数据库控件编程、数据报表技术,以及综合案例开发等内容。

《21天学通Visual Basic(第4版)》既适合于没有编程基础的Visual Basic 6.0 初学者作为入门教程,也可作为各类Visual Basic 6.0开发者的参考书籍。

《21天学通Visual Basic(第4版)》附带DVD 光盘1 张,包括超大容量教学视频、电子教案(PPT)、源代码、职场面试法宝等。

Author Description

本书的作者团队成员为一线开发工程师、资深编程专家或专业培训师,在编程开发方面有着丰富的经验,并已出版过多本相关畅销书,颇受广大读者认可。

Catalogue

第一篇 Visual Basic 6.0基础篇
第1章 Visual Basic 6.0概述( 教学视频:30分钟) 1
1.1 Visual Basic 6.0概述 1
1.1.1 Visual Basic的发展历程 1
1.1.2 Visual Basic 6.0的特点 1
1.1.3 Visual Basic 6.0的安装和卸载 2
1.2 Visual Basic 6.0集成开发环境(IDE) 3
1.2.1 启动Visual Basic 6.0 3
1.2.2 退出Visual Basic 6.0 4
1.2.3 集成开发环境的组成部分 5
1.3 第一个Visual Basic应用程序――Hello World 8
1.3.1 从“Hello World”开始 8
1.3.2 创建工程 8
1.3.3 创建窗体 9
1.3.4 设计程序界面 9
1.3.5 编写代码 9
1.3.6 保存工程 10
1.3.7 运行程序 10
1.3.8 生成可执行文件 11
1.4 Visual Basic 6.0 的帮助系统 11
1.4.1 MSDN帮助系统 12
1.4.2 网络资源 13
1.5 小结 13
1.6 习题 13
第2章 Visual Basic 6.0语言基础( 教学视频:34分钟) 15
2.1 代码编写规范 15
2.1.1 标识符命名规则 15
2.1.2 语句书写规范 16
2.1.3 程序注释 16
2.1.4 格式化及缩排 17
2.2 数据类型 17
2.2.1 基本数据类型 18
2.2.2 自定义数据类型 20
2.3 常量 22
2.3.1 局部常量 22
2.3.2 模块级常量 23
2.3.3 公用常量 23
2.4 变量 23
2.4.1 普通局部变量 23
2.4.2 静态局部变量 24
2.4.3 模块级变量 25
2.4.4 公用变量 25
2.5 运算符 26
2.5.1 算术运算符 26
2.5.2 字符串运算符 26
2.5.3 关系运算符 27
2.5.4 逻辑运算符 28
2.6 表达式 29
2.6.1 表达式的分类 29
2.6.2 表达式的书写规则 29
2.6.3 复合表达式的运算顺序 29
2.7 小结 29
2.8 习题 30
第3章 程序控制结构( 教学视频:35分钟) 33
3.1 顺序结构 33
3.1.1 赋值语句 33
3.1.2 顺序结构实例 34
3.2 选择结构 34
3.2.1 If…Then语句 35
3.2.2 If…Then…Else语句 36
3.2.3 If…Then…ElseIf…Else语句 37
3.2.4 IIf函数 38
3.2.5 If语句的嵌套 39
3.2.6 Select Case语句 41
3.2.7 Is、To关键字的使用 42
3.3 循环结构 44
3.3.1 While…Wend语句 44
3.3.2 For…Next语句 45
3.3.3 For Each…Next语句 47
3.3.4 While型Do…Loop语句 47
3.3.5 Until型Do…Loop语句 49
3.3.6 循环的嵌套 50
3.4 其他结构控制语句 51
3.4.1 GoTo语句 51
3.4.2 Exit语句 52
3.4.3 End语句 53
3.4.4 With语句 53
3.4.5 DoEvents语句 54
3.5 小结 54
3.6 习题 54
第4章 数组( 教学视频:33分钟) 58
4.1 数组的概念 58
4.2 静态数组与动态数组 58
4.2.1 静态数组 59
4.2.2 动态数组 59
4.3 一维数组与多维数组 60
4.3.1 一维数组 60
4.3.2 多维数组 61
4.4 数组的基本操作 63
4.4.1 输入数组元素 63
4.4.2 输出数组元素 63
4.4.3 插入数组元素 64
4.4.4 删除数组元素 65
4.4.5 查找数组元素 66
4.4.6 数组的排序 67
4.5 小结 70
4.6 习题 70
第5章 过程和函数( 教学视频:35分钟) 74
5.1 Sub过程 74
5.1.1 Sub过程的分类 74
5.1.2 创建Sub过程 75
5.1.3 调用Sub过程 76
5.2 Function过程 76
5.2.1 创建Function过程 77
5.2.2 调用Function过程 78
5.3 参数传递 78
5.3.1 形参与实参 78
5.3.2 传值调用 79
5.3.3 传址调用 80
5.3.4 可选参数 81
5.3.5 数组参数 82
5.3.6 对象参数 83
5.4 过程的嵌套与递归调用 84
5.4.1 嵌套调用 84
5.4.2 递归调用 85
5.5 小结 86
5.6 习题 86

第二篇 Visual Basic 应用程序篇
第6章 应用程序用户界面( 教学视频:36分钟) 90
6.1 界面样式 90
6.1.1 单文档界面 90
6.1.2 多文档界面 90
6.1.3 资源管理器样式界面 91
6.2 窗体的基本概念 91
6.2.1 窗体的组成 92
6.2.2 添加和删除窗体 92
6.3 窗体的属性、方法和事件 93
6.3.1 窗体的常用属性 93
6.3.2 窗体的常用方法 96
6.3.3 窗体的常用事件 100
6.4 多文档界面设计 104
6.4.1 多文档界面概述 105
6.4.2 多文档窗体菜单的设计 106
6.5 小结 108
6.6 习题 108
第7章 通用标准控件( 教学视频:35分钟) 112
7.1 控件概述 112
7.2 文本框控件 113
7.2.1 文本框控件的属性 113
7.2.2 文本框控件的事件 115
7.2.3 应用示例 115
7.3 命令按钮控件 117
7.3.1 命令按钮控件的属性 117
7.3.2 命令按钮控件的事件 119
7.3.3 用户登录窗体设计范例 119
7.4 单选按钮控件 121
7.4.1 单选按钮控件的属性 121
7.4.2 单选按钮控件的事件 121
7.5 复选按钮控件 122
7.5.1 复选按钮控件的属性 123
7.5.2 设置字体格式范例 123
7.6 定时器控件 125
7.6.1 定时器控件的属性 125
7.6.2 定时器控件应用范例 126
7.7 列表框控件 127
7.7.1 列表框控件的属性 128
7.7.2 列表框控件的方法 130
7.7.3 列表框控件的事件 130
7.7.4 列表框控件应用范例 131
7.8 小结 133
7.9 习题 134
第8章 扩展控件( 教学视频:29分钟) 139
8.1 通用对话框控件 139
8.1.1 “打开”对话框 140
8.1.2 “工程另存为”对话框 142
8.1.3 “颜色”对话框 143
8.1.4 “字体”对话框 145
8.1.5 “打印”对话框 147
8.2 列表视图控件 150
8.2.1 常用属性 150
8.2.2 常用方法 151
8.2.3 常用事件 153
8.3 树视图控件 153
8.3.1 常用属性 154
8.3.2 常用方法 154
8.4 小结 157
8.5 习题 157
第9章 菜单、工具栏与状态栏( 教学视频:32分钟) 162
9.1 菜单 162
9.1.1 菜单编辑器 163
9.1.2 下拉式菜单 163
9.1.3 应用示例 164
9.2 弹出式菜单 166
9.3 工具栏 167
9.3.1 一般步骤 167
9.3.2 应用示例 168
9.4 状态栏 171
9.5 小结 173
9.6 习题 173
第10章 文件系统( 教学视频:34分钟) 178
10.1 文件系统概述 178
10.1.1 文件的结构 178
10.1.2 文件的类型 179
10.2 文件的基本操作 180
10.2.1 顺序文件的打开和关闭 180
10.2.2 顺序文件的写操作 181
10.2.3 顺序文件的读操作 183
10.2.4 随机文件的打开和关闭 184
10.2.5 随机文件的写操作 185
10.2.6 随机文件的读操作 187
10.3 文件系统控件 189
10.3.1 DriveListBox控件 189
10.3.2 DirListBox控件 192
10.3.3 FileListBox控件 193
10.3.4 应用示例 198
10.4 文件系统对象 199
10.4.1 文件系统对象概述 199
10.4.2 Drive对象 201
10.4.3 Folder对象 203
10.4.4 File对象 206
10.4.5 TextStream对象 209
10.5 小结 212
10.6 习题 212
第11章 图形与图像( 教学视频:31分钟) 217
11.1 坐标系统 217
11.2 图形的基本属性 218
11.2.1 获取当前坐标 218
11.2.2 设置颜色属性 219
11.2.3 设置线条属性 219
11.2.4 填充图形 222
11.3 图形控件 224
11.3.1 Shape控件 224
11.3.2 Line控件 224
11.4 图形的基本方法 225
11.4.1 PSet方法 225
11.4.2 Line方法 226
11.4.3 Circle方法 228
11.4.4 Cls方法 229
11.4.5 用图形方法绘制统计图例 229
11.5 小结 233
11.6 习题 233
第12章 多媒体编程( 教学视频:32分钟) 237
12.1 多媒体概述 237
12.2 多媒体控件 237
12.2.1 MMControl控件 237
12.2.2 WindowsMediaPlayer控件 242
12.3 API函数实现多媒体编程 244
12.3.1 PlaySound函数 244
12.3.2 mciSendString函数 246
12.4 小结 247
12.5 习题 247

第三篇 Visual Basic 高级应用篇
第13章 网络通信编程技术( 教学视频:33分钟) 253
13.1 网络协议 253
13.1.1 TCP/IP协议 253
13.1.2 UDP协议 254
13.2 Winsock控件 254
13.2.1 常用属性 255
13.2.2 常用方法 258
13.2.3 主要事件 260
13.3 Winsock控件的应用 261
13.3.1 创建网络通信程序服务器端 261
13.3.2 创建网络通信程序客户端 264
13.3.3 用UDP创建网络通信程序 266
13.4 小结 267
13.5 习题 267
第14章 WIN32 API函数( 教学视频:33分钟) 271
14.1 API概述 271
14.1.1 API简介 271
14.1.2 动态链接库(DLL) 271
14.2 使用API 272
14.2.1 API函数的声明 272
14.2.2 启动API文本浏览器 272
14.2.3 用API文本浏览器声明API函数 273
14.3 API函数的应用 274
14.3.1 常用API函数 274
14.3.2 获取驱动器的类型 276
14.3.3 锁定鼠标移动边界 277
14.4 小结 279
14.5 习题 279
第15章 ActiveX控件( 教学视频:31分钟) 283
15.1 ActiveX控件概述 283
15.2 创建ActiveX控件 283
15.2.1 创建步骤 283
15.2.2 创建ActiveX控件工程 284
15.2.3 设计外观 284
15.2.4 添加代码 286
15.2.5 添加属性、方法和事件 288
15.2.6 生成ActiveX控件 291
15.2.7 使用ActiveX控件 291
15.3 小结 292
15.4 习题 292
第16章 程序的调试与除错( 教学视频:33分钟) 297
16.1 常见错误类型 297
16.1.1 编译错误 297
16.1.2 运行错误 298
16.1.3 逻辑错误 299
16.2 程序工作模式 299
16.3 程序调试技术 300
16.3.1 调试工具栏 300
16.3.2 本地窗口 300
16.3.3 立即窗口 301
16.3.4 监视窗口 301
16.3.5 Debug对象 302
16.3.6 Stop语句 303
16.4 错误处理 304
16.4.1 Err对象 304
16.4.2 捕获错误 304
16.4.3 恢复程序运行 305
16.5 小结 305
16.6 习题 305

第四篇 Visual Basic与数据库系统篇
第17章 数据库系统与SQL语言( 教学视频:34分钟) 308
17.1 数据库系统概述 308
17.1.1 三级模式 308
17.1.2 关系数据库 309
17.2 Access数据库 310
17.2.1 创建Access数据库 310
17.2.2 添加数据表 311
17.3 SQL Server数据库 312
17.3.1 创建SQL Server数据库 312
17.3.2 新建数据表 313
17.4 SQL语言 315
17.4.1 数据查询语句 315
17.4.2 数据操作语句 315
17.4.3 数据定义语句 317
17.5 小结 318
17.6 习题 318
第18章 ADO数据库编程( 教学视频:31分钟) 322
18.1 ADO概述 322
18.2 ADO对象模型 323
18.2.1 Connection对象 323
18.2.2 连接数据库 324
18.2.3 Recordset对象 325
18.2.4 数据显示实例 327
18.2.5 Command对象 329
18.2.6 Field对象 332
18.2.7 Stream对象 334
18.2.8 Error对象 334
18.3 小结 335
18.4 习题 335
第19章 VB与数据库编程( 教学视频:35分钟) 344
19.1 Data控件 344
19.1.1 Data控件的常用属性 344
19.1.2 Data控件的常用方法 345
19.1.3 Data控件的常用事件 346
19.2 ADO控件 346
19.2.1 ADO控件的常用属性 347
19.2.2 ADO控件的常用方法 348
19.2.3 连接数据库 348
19.3 数据绑定控件 350
19.3.1 DBGrid控件 350
19.3.2 DBList控件和DBCombo控件 351
19.3.3 DataGrid控件 353
19.3.4 DataList控件和DataCombo控件 354
19.4 小结 356
19.5 习题 356
第20章 设计数据报表( 教学视频:30分钟) 363
20.1 数据环境 363
20.1.1 添加数据环境设计器 363
20.1.2 添加Connection对象 364
20.1.3 添加Command对象 364
20.1.4 使用数据环境 365
20.2 数据报表 367
20.2.1 添加数据报表设计器 367
20.2.2 制作数据报表 368
20.3 小结 369
20.4 习题 369
第21章 人事管理系统开发实例( 教学视频:35分钟) 375
21.1 人事管理系统开发背景 375
21.2 人力资源案例设计与分析 375
21.2.1 系统结构设计 375
21.2.2 系统需求分析 376
21.2.3 系统总体设计 376
21.3 数据库设计 377
21.3.1 数据库需求分析 377
21.3.2 创建数据库 377
21.4 设计公共函数模块 380
21.4.1 创建公共变量和公共函数模块 380
21.4.2 创建入口函数 382
21.5 创建系统登录模块 383
21.6 创建主窗体模块 384
21.7 创建用户管理子模块 385
21.8 创建修改密码子模块 386
21.9 创建基础数据管理模块 386
21.10 创建部门信息管理模块 387
21.11 创建职员基本信息管理子模块 388
21.12 设计报表 389
21.13 创建数据库管理模块 389
21.13.1 创建数据库备份子模块 389
21.13.2 创建数据库恢复子模块 390
21.14 应用程序的打包发布 391
21.15 小结 394
Introduction

千里之行,始于足下!
——老子
“21 天学编程系列”自 2009 年 1 月上市以来一直受到广大读者的青睐。该系列中的大部分图书从一上市就登上了编程类图书销售排行榜的前列,很多大、中专院校也将该系列中的一些图书作为教材使用,目前这些图书已经多次印刷、改版。可以说, “21 天学编程系列”是自2009 年以来,国内原创计算机编程图书最有影响力的品牌之一。
为了使该系列图书能紧跟技术和教学的发展,更加适合读者学习和学校教学,我们结合最新技术和读者的建议,对该系列图书进行了改版(即第4版)。本书便是该系列中的Visual Basic分册。
【本书有何特色】
1.细致体贴的讲解
为了让读者更快地上手,本书特别设计了适合初学者的学习方式,用准确的语言总结概念、用直观的图示演示过程、用详细的注释解释代码、用形象的比方帮助记忆。
●知识点介绍:准确、清晰是其显著特点,一般放在每一节开始的位置,让零基础的读者了解相关概念,顺利入门。
●范例:书中出现的完整实例,以章节顺序编号,便于检索和循序渐进地学习、实践,放在每节知识点介绍之后。
●示例代码:与范例编号对应,层次清楚、语句简洁、注释丰富,体现了代码优美的原则,有利于读者养成良好的代码编写习惯。对于大段程序,均在每行代码前设定编号,便于学习。
●运行结果:对范例给出运行结果和对应图示,帮助读者更直观地理解示例代码。
●代码解析:将范例代码中的关键代码行逐一解释,有助于读者掌握相关概念和知识。
●贴心的提示:为了便于读者阅读,全书还穿插着一些技巧、提示等小贴士,体例约定如下。
.提示:通常是一些贴心的提醒,让读者加深印象,提供建议或者解决问题的方法。
.注意:提出学习过程中需要特别注意的一些知识点和内容,或者相关信息。
.警告:对操作不当或理解偏差将会造成的灾难性后果给出警示,以加深读者印象。
●习题:每章最后提供专门的测试习题,供读者检验所学知识是否牢固掌握。
2.实用超值的 DVD 光盘
为了帮助读者比较直观地学习,本书附带DVD光盘,内容包括多媒体视频、电子教案(PPT)和实例源代码等。
●多媒体视频:
本书配有长达近12小时的教学视频,讲解关键知识点界面操作和书中的一些综合练习题。作者亲自配音、演示,手把手教会读者使用。
●电子教案(PPT):
本书可以作为高校相关课程的教材或课外辅导书,所以作者特别为本书制作了电子教案(PPT),以方便老师教学使用。
●职场面试法宝
本书附赠职场面试法宝,含常见的职场经典面试题及解答。
3.提供完善的技术支持
本书的技术支持论坛https://www.rzchina.net,读者可以在上面提问交流。另外,论坛上还有一些小的教程、视频动画和各种技术文章,可帮助读者提高开发水平。
【本书适合哪些读者阅读】
本书非常适合以下人员阅读
.从未接触过 Visual Basic 编程的自学人员。
.有一定 Visual Basic 编程基础,但还需要进一步学习的人员。
.其他编程爱好者。
编 者

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book