-
AVR.C
AVR配套程序对AVR单片机初学者非常有用(AVR microcontroller AVR matching procedure is very useful for beginners)
- 2011-04-25 11:49:35下载
- 积分:1
-
Legend
AE+C#在pagelayoutcontrol中添加图例、指北针、比例尺、文字的源代码,在很多开发中可以用到(AE+C# added in pagelayoutcontrol in Legend, compass, scale, the text of the source code can be used in many developing)
- 2012-09-07 15:29:39下载
- 积分:1
-
lane-detect
canny边缘检测,还有车道线检测。效果还可以。(canny edge detection, and lane detection. The effect can be.)
- 2014-01-14 16:44:00下载
- 积分:1
-
PRequation
工程领域,PR方程代码.用于计算混合工质性质。(PR equation code)
- 2020-09-04 16:58:09下载
- 积分:1
-
181072
用C++写的LDPC的传输仿真程序,包括编码,BP译码以及判决()
- 2018-07-08 21:19:32下载
- 积分:1
-
5种摄像头算法
说明: 五种阳光算法,对摄像头遇到的阳光进行减弱(Five sun algorithms to reduce the sunlight the camera encounters)
- 2020-03-04 20:31:44下载
- 积分:1
-
socket测试
linux底下利用守护进程编写的socket通信
- 2022-04-30 11:55:58下载
- 积分:1
-
cdmpile
说明: 实现QQ界面编程的问题,使用VC实现,涉及到许多控件编程的方法.(Implementation of QQ interface programming problems, the use of VC implementation, involving many control programming methods.)
- 2018-12-22 20:26:02下载
- 积分:1
-
TSC513
高压补偿控制器电路原理设计文件.电力自动化公司保密的东东!(High-pressure compensation controller circuit schematic design documents. Electric Power Automation Company confidential stuff!)
- 2013-05-14 14:04:10下载
- 积分:1
-
C# 只允许运行一个程序实例的方法及代码
Visual C# 设置程序只能运行一个实例,当用户再次打开同一窗口时,会弹出提示,告诉你本程序已经在运行了,具体的实现代码参考如下:
设置程序只能运行一个实例:
var MyModuleName = System.Diagnostics.Process.GetCurrentProcess().MainModule.ModuleName;
var MyProcessName =System.IO.Path.GetFileNameWithoutExtension(MyModuleName);
System.Diagnostics.Process[] MyProcesses = System.Diagnostics.Process.GetProcessesByName(MyProcessName);
if (MyProcesses.Length > 1)
{
MessageBox.Show("程序已经运行!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
- 2023-03-23 03:40:03下载
- 积分:1