-
Useful information on a drawing if you have similar trouble also upload informat...
很有用的一份图纸资料
如果各位有类似资料麻烦也上传上来哈-Useful information on a drawing if you have similar trouble also upload information onto Kazakhstan
- 2022-03-14 23:56:02下载
- 积分:1
-
vfkejian
VF上课使用的ppt课件,内容较全,欢迎下载使用,哈哈。(VF ppt Courseware)
- 2009-02-24 20:09:01下载
- 积分:1
-
wavtten
你是否曾经为要做一个试用软件而苦苦写很多代码,这个控件为你解决了写共享软件(Have you ever written a lot of code to try out software, and this control solves the problem of writing shared software)
- 2018-11-28 23:33:09下载
- 积分:1
-
chap4
多步Diophantine方程递推,最小方差自校正程序,广义预测控制程序等(Multi-step recursive Diophantine equation, the minimum variance self-tuning procedures, generalized predictive control procedures,)
- 2009-10-30 14:43:53下载
- 积分:1
-
C#常用数据类型操作示例
C#常用数据类型操作示例,包括时间、字符串、随机数等的操作示例,比如如何获得按规定格式显示的时间及日期、各种数据类型的展示、字符串及随机数的应用等,对于不熟悉C#的朋友比较有用。
- 2022-10-13 20:35:03下载
- 积分:1
-
订票系统
订票系统,c语言,七大功能模块,订票,查票,退票等等,无数据库连接,相应数据导入flight.txt文件
- 2023-02-14 01:00:04下载
- 积分:1
-
LPC2300 UART0 baundrate 384
LPC2300 uart0 baundrate 384
- 2022-06-18 16:05:47下载
- 积分:1
-
YS-XFS5152芯片资料
YS-XFS5152芯片资料,包含规格书,PCB,原理图,程序等(YS - XFS5152 chip information, including specifications, PCB and schematic diagram, program, etc)
- 2019-04-26 10:49:52下载
- 积分:1
-
C语言实现的python里面的filtfilt函数
说明: 使用C语言实现了零相滤波器算法程序,优化了资源(Zero phase filter program realized by C program)
- 2021-03-18 17:29:19下载
- 积分:1
-
C# 取消磁盘共享功能的实例
Visual C# 取消Windows 磁盘共享源代码,在Widnwos7也可设置某一磁盘共享和不共享,本程序只是模拟实现的功能,可取消已被共享的磁盘,在文本框中输入盘符即可取消该盘的共享属性。编写思路,单击一个按钮,创建一个事件,将整个需要实现的功能都写进按钮事件中,事件的代码如下:
System.Diagnostics.Process myProcess = new System.Diagnostics.Process();
myProcess.StartInfo.FileName = "cmd.exe";//启动cmd命令
myProcess.StartInfo.UseShellExecute = false;//是否使用系统外壳程序启动进程
myProcess.StartInfo.RedirectStandardInput = true;//是否从流中读取
myProcess.StartInfo.RedirectStandardOutput = true;//是否写入流
myProcess.StartInfo.RedirectStandardError = true;//是否将错误信息写入流
myProcess.StartInfo.CreateNoWindow = true;//是否在新窗口中启动进程
myProcess.Start();//启动进程
//执行取消磁盘共享命令
myProcess.StandardInput.WriteLine("NET SHARE " + textBox1.Text + "$ /DEL");
MessageBox.Show("执行成功", "信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
- 2023-05-13 16:00:03下载
- 积分:1