-
第一次弄个不知道怎么做,以后会慢慢补充的。
第一次弄个不知道怎么做,以后会慢慢补充的。-The first moment and do not know how the future will gradually add.
- 2022-05-12 14:15:44下载
- 积分: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
-
来自国外的网站图片展示-焦点图轮显特效
来自国外的网站图片展示-焦点图轮显特效代码,基于jquery插件实现,panning-slideshow With jQuery,好像不支持鼠标控制切换,是自动切换的,自动轮显图片,有图片渐显和滑动效果,具体效果请参见演示截图所示。
- 2023-08-15 09:40:03下载
- 积分:1
-
魔方 OCR
魔方 OCR 文本 3.03
查找图像中的信件和将它转换为文本
这是使用 delphi 源代码代码 OCR 文本识别。
- 2022-04-20 08:41:46下载
- 积分:1
-
how to read the disk space and available space.
如何读取磁盘的空间及可用空间。-how to read the disk space and available space.
- 2022-01-27 15:37:57下载
- 积分:1
-
介绍数字图像滤波的各种方法,也是从网上下载的,还可以
介绍数字图像滤波的各种方法,也是从网上下载的,还可以-Introduce a variety of digital image filtering method, is also downloaded from the Internet can also be
- 2022-07-22 20:41:42下载
- 积分:1
-
C# MSSQL门诊管理系统
C#结合SQLSERVER数据库打造的医院门诊管理系统,可实现医院药品管理、收费管理、药房发药管理、挂号登记管理、划价管理、药品库存量查询和科室挂号查询等功能。系统测试截图如图所示。
- 2023-07-16 12:35:03下载
- 积分:1
-
C 程序设计语言定义了两个标准的内存管理函数:malloc() 和 free()。C 程序员经常使用那些函数在运行时分配缓冲区,以便在函数之间传递数据。然而在许...
C 程序设计语言定义了两个标准的内存管理函数:malloc() 和 free()。C 程序员经常使用那些函数在运行时分配缓冲区,以便在函数之间传递数据。然而在许多场合下,您无法预先确定缓冲区所需的实际大小,这对于构造复杂的 C 程序来说,可能会导致几个根本性的问题。一种自我管理的抽象数据缓冲区概括地给出了抽象缓冲区的伪 C 代码实现,并详细介绍了采用这种机制的优点。-C programming language defines two standard memory management functions: malloc () and free (). C programmers frequently use those functions at run-time allocation of buffers in order to pass data between functions. However, in many occasions, you can not pre-determine the actual size of the buffer required, which for the complex structure of the C program, it may lead to several fundamental questions. A self-management, abstract data buffer generally gives the pseudo-C code for an abstract buffer implementation, and details the advantages of using this mechanism.
- 2022-03-11 11:19:26下载
- 积分:1
-
prototype.js原代码包及详细原代码讲解,迅速让你通过高质量的原代码掌握函数式编程,是js水平提升一个新高度...
prototype.js原代码包及详细原代码讲解,迅速让你通过高质量的原代码掌握函数式编程,是js水平提升一个新高度-prototype.js original code and details on the original code, rapidly giving you high-quality original master function-code programming is js upgraded to a new height
- 2023-01-25 16:45:04下载
- 积分:1
-
关于isp的一个测试程序,能够实现简单的测试
关于isp的一个测试程序,能够实现简单的测试-Isp on a test procedure that can realize simple test
- 2022-02-16 00:32:14下载
- 积分:1