-
duobianxing
重磁正演中的多边形模型,对于学习地球物理的人有所帮助(Of the polygon model of magnetic forward for geophysical study help
)
- 2020-07-03 15:00:01下载
- 积分:1
-
MCU-hmi
远端操作人机,可以节省传统HMI,继而使用一体式面板。使用更加方便(Remote Operator Terminal)
- 2013-11-14 22:07:34下载
- 积分:1
-
pcl
pcl 3d 文件格式转换,点云读取与显示(PCL 3D file format conversion, point cloud reading and display)
- 2017-11-09 13:02:45下载
- 积分:1
-
timer
Symbian 小程序,使用计时器,字体滚动显示,实现跑马灯效果
(Symbian small programs, use the timer, fonts, scrolling display to achieve Marquee effects)
- 2009-11-27 15:50:34下载
- 积分:1
-
calculator
对话框经典起步实例计算器,能够实现普通计算器的功能,希望对初学者有所帮助(Classic examples of the dialog started calculator, to achieve common calculator functions, I hope to help beginners)
- 2013-12-07 21:23:53下载
- 积分:1
-
104从站通讯协议
实现104 对上的通讯满足常规的通讯任务。
- 2022-08-08 00:58:42下载
- 积分:1
-
C# 含云台控制的视频监控系统源代码
C# 小型的视频监控系统完整源码,含有云台控制系统,主要功能如下:
1.支持云台控制,以监控各个角落。
2.可对监控画面进行快照和录像操作。
3.可以回放观看已经录制的视频的文件。
4.晚上的系统注册功能。
5.对云台的聚焦、对焦、光圈及雨刷的控制操作。操作者可通过“方向控制”区域下的各个按钮,对云台进行上、下、左、右控制。
系统管理员用户名为:Tsoft,密码为:111。
本系统中的“视频回放”模块时,需要在Windows XP或者更高版本Windows上运行,Windows7当然可以。
- 2022-01-26 04:29:13下载
- 积分:1
-
3GParamTest
3G参数测试程序,主要测试3G的主要参数(3G parametric test procedures commonly used parameters, the main test of 3G)
- 2014-03-27 20:39:56下载
- 积分:1
-
The-handling-of-large-integer-class
处理大的整数类,能够实现大的整数的加减操作(The handling of large integer class, it is possible to realize a large integer addition and subtraction operation)
- 2012-11-22 22:34:44下载
- 积分:1
-
C# 获取Access数据库的数据表名称
C# 获取Access数据库的数据表名称,private void button1_Click(object sender, EventArgs e)
{//获取Access数据库的数据表名称
string MyAccessDBFile = @"F:Northwind.mdb";
string MyConnectString ="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" +MyAccessDBFile;
var MyConnection = new System.Data.OleDb.OleDbConnection(MyConnectString);
MyConnection.Open();
var MyTables = MyConnection.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
string MyInfo = MyAccessDBFile + "数据库的数据表包括:";
foreach (DataRow MyRow in MyTables.Rows)
{
string MyTable = MyRow["TABLE_NAME"].ToString();
MyInfo += MyTable + "、";
}
MessageBox.Show(MyInfo, "信息提示", MessageBoxButtons.OK);
}
- 2023-01-05 19:40:03下载
- 积分:1