-
Flash制作跟随鼠标游动的金鱼动画
Flash游来游去的鱼,Flash制作跟随鼠标游动的金鱼动画,非常逼真的金鱼动画效果,并且跟随鼠标游动,Flash源文件没有细看,或许里面用了比较多的ActionScript动作脚本。
- 2022-10-24 01:10:03下载
- 积分:1
-
判断手机号码是否吉凶的小东西
判断手机号码是否吉凶的小东西-judge whether the phone numbers of small things good and bad.
- 2022-02-03 20:43:54下载
- 积分:1
-
Matlab实现
采用Iris数据集,实现神经网络bp算法。(Iris neural network BP algorithm is implemented by using data set.)
- 2017-07-27 15:19:45下载
- 积分:1
-
Python-Stepwise-Regression-master
用python实现的逐步回归算法,希望对大家有用(Step-by-step regression algorithm implemented in python, I hope to be useful to everyone)
- 2020-07-30 15:08:40下载
- 积分:1
-
KiField-master
说明: KiCAD KiFields for libraries.
- 2019-01-31 06:45:21下载
- 积分:1
-
four UNIX operating function Message Queue
四种UNIX消息队列操作函数-four UNIX operating function Message Queue
- 2022-04-25 16:00:35下载
- 积分:1
-
Rectifier_Diode
使用专用的电路仿真软件Simplorer搭建的不可控整流电路模型(Uncontrollable Rectifier model using simplorer software)
- 2018-04-10 08:12:12下载
- 积分:1
-
tanchishe1.2
贪吃蛇小游戏,用C语言编写,简单有趣 (simple game)
- 2012-08-16 12:54:59下载
- 积分:1
-
深入理解c指针
一本深入讲述c语言指针的书籍,用于入门及深入探究。(An in-depth book about C language pointer, for entry and in-depth exploration.)
- 2018-06-14 12:58:25下载
- 积分: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