-
ms SQL 和 sql anywhere 数据库管理实用工具源码
ms SQL 和 sql anywhere 数据库管理实用工具源码-sql anywhere SQL and database management tools usable source
- 2022-01-28 02:10:15下载
- 积分:1
-
C#功能键定制,将回车键转换为Tab键
一个功能键定制的C#源码实例,将回车键转换为Tab键,其实原理简单,是用程序来改键位值,比如如果键值为13,则发送tab键命令,是不是很简单?附有完整源码。
- 2022-05-16 13:44:17下载
- 积分:1
-
PDA上的管理工具
灵活的很,是很好的管理工具
PDA上的管理工具
灵活的很,是很好的管理工具-PDA on a very flexible management tools, is a very good management tool
- 2023-03-30 21:15:04下载
- 积分:1
-
在任意移动的窗口中实现小球的控制
实现控制一个小球在窗口中上下左右任意移动-achieve control of the ball in a small window above and below arbitrary Mobile
- 2022-07-05 02:48:10下载
- 积分:1
-
微机原理课程设计整点报时系统,武汉理工大学开发的试验箱!...
微机原理课程设计整点报时系统,武汉理工大学开发的试验箱!-Microcomputer Principles of curriculum design, the whole point timekeeping system, Wuhan University of Technology developed by Chambers!
- 2022-12-19 05:25:03下载
- 积分:1
-
计算机人工智能方面的决策树方法 c4.5
计算机人工智能方面的决策树方法 c4.5-the decision tree method Bank
- 2023-06-11 08:50:04下载
- 积分:1
-
1.本文对一种高效的升压式PWM 变换电路作了分析研究 对开关状态的切换效率高 采用双零软开关工作,大大降低了开关损耗, 提
高了电路的转换效率.
2....
1.本文对一种高效的升压式PWM 变换电路作了分析研究 对开关状态的切换效率高 采用双零软开关工作,大大降低了开关损耗, 提
高了电路的转换效率.
2.该电路在高频的开关电源、逆变器等电力电子电路上有很大的实用价值, 可以提高电路的转换效率. -1. In this paper, an efficient step-up PWM conversion circuit analysis study on the switch to switch the state of high efficiency soft-switching double-zero work, greatly reduces switching losses, improve the conversion efficiency of the circuit .2. The circuit in high-frequency switching power supplies, inverters and other power electronic circuits have great practical value, can improve the circuit
- 2022-03-18 18:36:47下载
- 积分:1
-
看门狗程序
一个简看门狗程序,可以在KEIL上仿真,也可以在单片机上使用,定时几个脉冲后自动重新启动。连接在P05上的灯会跟随着脉冲不断的闪烁。
- 2022-12-02 01:45:04下载
- 积分:1
-
分别完成了异步发送电路,接收电路的设计,并把发送和接收电路组合在一起,构成通信控制器。...
分别完成了异步发送电路,接收电路的设计,并把发送和接收电路组合在一起,构成通信控制器。-Send completed asynchronous circuit, receiving circuit design, and to send and receive circuit together constitute the communication controller.
- 2022-07-14 03:03:02下载
- 积分: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