-
National Electronic Design Competition in 2009 before the game list of component...
2009年全国电子设计大赛赛前元件清单,组委会发的-National Electronic Design Competition in 2009 before the game list of components, the organizing committee issued
- 2022-03-25 23:45:10下载
- 积分:1
-
VB6.0 餐饮就餐席位管理系统
VB6.0 餐饮就餐席位管理系统,功能包括开桌,换桌,结账,打印等模块,数据库为SQLSERVER,调试前请先配置好数据库,请注意:如你不是系统管理员,请不要私自修改系统设置,否则将导致不可用。
- 2022-04-01 15:55:50下载
- 积分:1
-
Saipan example program source code, a good source code examples, please see the...
塞班例子程序源代码,不错的源代码例子,请大家查看,希望有所帮助。-Saipan example program source code, a good source code examples, please see the hope that help.
- 2022-05-06 05:22:42下载
- 积分:1
-
一款VB财务表格控件
一款VB财务表格控件-Financial forms a VB control
- 2022-02-02 20:24:01下载
- 积分:1
-
吃数游戏是一个在turboC2环境下编写的小游戏,该游戏要求在宫殿中找出几个数之和是7的数吃掉,并走到7的位置...
吃数游戏是一个在turboC2环境下编写的小游戏,该游戏要求在宫殿中找出几个数之和是7的数吃掉,并走到7的位置-eat a few games in turboC2 environment prepared by the small games, the games in the palace to identify several hours, and the number is seven eaten, and walked seven locations. .
- 2022-05-05 04:43:52下载
- 积分:1
-
basic amplifier based courseware amplification circuit of negative feedback base...
基本放大电路 基础教学课件 放大电路中的负反馈 基础课件部分3 集成运算放大器 -basic amplifier based courseware amplification circuit of negative feedback based courseware part 3 Integrated Operational Amplifiers
- 2022-01-25 22:52:56下载
- 积分:1
-
JPEG格式说明,和解码流程介绍,对移植JPEG的解码CODE很有帮助。...
JPEG格式说明,和解码流程介绍,对移植JPEG的解码CODE很有帮助。-JPEG format, and decoding flow introduction of transplantation JPEG decoder CODE helpful.
- 2022-11-18 11:10:03下载
- 积分:1
-
LCD OSD procedures for the development of LCD 8051
LCD-OSD程序,用于8051液晶显示器的开发
- 2022-10-07 13:25:03下载
- 积分:1
-
包含TAB界面的微信分答小程序源码
一个包含TAB界面的微信分答小程序源码,已实现了界面中的事件处理函数、滑动切换tab、点击tab切换、点击悬赏、顶部切换等。功能方面,主要实现了以下五大模块:公共服务、限免模块、收听模块、找人模块和“我的”模块,貌似在最新的微信开发工具中,还有些需要调试,个别地方报错哦。
- 2023-02-18 22:15:04下载
- 积分:1
-
C# 创建泛型字典的例子
C# 创建泛型字典,为泛型字典添加3个元素,按键值对泛型字典进行排序操作。
Dictionary users = new Dictionary();//创建泛型字典
users.Add(3, new UserInfo(1, "滕*敏", "01"));//为泛型字典添加3个元素
users.Add(2, new UserInfo(2, "滕*娜", "02"));
users.Add(1, new UserInfo(3, "X家兴", "03"));
//按键值对泛型字典进行排序操作
var query = from item in users
where item.Value.UserName.CompareTo("滕*") > 0//用户名大于"滕立"
orderby item.Key
select item;
label1.Text = "显示查询结果:
";
foreach (var item in query)//显示查询结果
- 2022-08-02 11:59:24下载
- 积分:1