-
51-60example-c代码,是txt文本格式的,另有40例代码会陆续传上来。-51-60example-c code, txt text format. Another 40 cases will successively sent code onto.
- 2022-03-19 13:17:01下载
- 积分:1
-
C#委托与事件委托处理一例
C#委托与事件委托处理一例,分别用代码去演示委托和事件委托的创建方法、异同及各自特点,同时,代码中附有技术资料,比较详细的说明了两者的异同,可视为一个学习委托的教程来对待。
- 2022-06-16 11:33:58下载
- 积分:1
-
the document in detail the high
该文档详细介绍了高速PCB布线的一些概念及注意点,本人看后感觉帮助比较大,不敢独享-the document in detail the high-speed PCB and the attention of some of the concepts, I look and feel more help, not monopoly
- 2023-03-08 20:05:03下载
- 积分:1
-
ST chip as well as on the development of information MP764W
ST芯片开发资料以及说明--MP764W-ST chip as well as on the development of information MP764W
- 2022-05-18 01:59:04下载
- 积分:1
-
自动化代码
资源描述工厂产品测试自动化代码,包括机械手控制代码
- 2023-03-10 23:25:06下载
- 积分:1
-
数值分析要求:第二题编成命令文件即可,其中阶乘可以单独编成函数文件在命令文件中调用,也可以直接在你所编的命令文件中利用循环语句直接计算;
第四题编成通用的...
数值分析要求:第二题编成命令文件即可,其中阶乘可以单独编成函数文件在命令文件中调用,也可以直接在你所编的命令文件中利用循环语句直接计算;
第四题编成通用的程序,建议编成函数文件。提示:可以把多项式的系数和所需要求解的点设为参数。-Numerical Analysis of requirements: the second title of the command file can be compiled, which can factorial function into a separate file in order to call the document can also be made directly in your document, use the command loop direct calculation into fourth title common procedures, the proposed document into function. Tip: polynomial coefficients can be requested and the required parameters set point solution.
- 2022-01-25 22:12:15下载
- 积分: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
-
frogman game, if you want to write about games, but to the idea Hello The classi...
蛙人游戏,如果您想写游戏,这可是给您好想法
The classic frogger game brought to life with VB... If you are into writing games, this gives you an idea of what you can do.-frogman game, if you want to write about games, but to the idea Hello The classic frogger game brought to life with VB ... If you are into writing games, this gives you an idea of what you can do.
- 2023-04-04 22:40:03下载
- 积分:1
-
介绍三星2440处理器的详细英文文档,是一本比较好的学习2440资料
介绍三星2440处理器的详细英文文档,是一本比较好的学习2440资料-Samsung 2440 processor introduce detailed documentation in English is a relatively good information on learning 2440
- 2022-03-24 16:44:03下载
- 积分:1
-
运动检测
我的项目是用opencv来识别运动检测,在这个项目中,我们使用opencv标准函数来记录图像的运动历史,并计算图像的梯度,我在运动发生的地方画一个圆并显示方向
- 2022-03-06 15:40:09下载
- 积分:1