-
PPT
说明: MATLAB优化算法案例分析与应用的PPT,供大家交流参考(PPT for case analysis and application of MATLAB optimization algorithm)
- 2019-01-13 11:22:37下载
- 积分:1
-
feasibilityreport
Weekly Activity Report feasibility Repor
- 2006-12-19 14:44:34下载
- 积分:1
-
历年程序员考试题目
历年程序员考试题目-programmers calendar year exams
- 2022-03-02 01:29:00下载
- 积分:1
-
简单的FTP客户端,旨在为用户提供文件传输服务
Simple FTP client, designed to provide file transfer service to users
- 2023-03-09 22:20:03下载
- 积分:1
-
这是一个JSP的一个摸班部件, 学生管理系统的一部分
这是一个JSP的一个摸班部件, 学生管理系统的一部分-This is a touch of a JSP components classes, students part of the management system
- 2022-01-25 21:43:40下载
- 积分:1
-
扫卡器新版本 (1)
说明: 可以扫各大卡盟的弱口令卡密,正常是付费的,我直接破解了(You can scan the weak password card secrets of major card leagues)
- 2020-12-28 14:59:18下载
- 积分:1
-
windows自带的游戏.蜘蛛纸牌修改器
windows自带的游戏.蜘蛛纸牌修改器-windows own game. Spider Solitaire for changes
- 2023-06-13 10:55:03下载
- 积分:1
-
criticalpath
这是一个求取关键路径的c语言程序设计源代码(This is a strike the critical path of c language programming source code)
- 2012-06-14 09:35:54下载
- 积分:1
-
PV_MPPT
说明: 通过电导增量法实现光伏MPPT控制,改变光照强度可以看出最大功率输出改变。(The photovoltaic MPPT control is realized by the conductance increment method, and the maximum power output change can be seen by changing the illumination intensity.)
- 2019-04-12 17:48:22下载
- 积分:1
-
C#启动Windows IIS服务的实例
C#启动指定的Windows信使服务,本例中是启动IIS服务,在Windows XP下可完美运行,在Windows7下不行好像,本程序演示如何在C#的程序中启动一个指定的Windows内置服务的方法。具体的实现代码:
ServiceController service = new ServiceController();//创建服务控制对象
service.ServiceName = "Messenger";//启动Windows信史服务
//判断当前服务状态
if (service.Status == ServiceControllerStatus.Stopped)
{
try
{
service.Start();// 启动服务
service.WaitForStatus(ServiceControllerStatus.Running);
}
catch (InvalidOperationException)
{
MessageBox.Show("不能启动该服务!");
}
}
- 2022-02-13 12:56:43下载
- 积分:1