-
“连连看”游戏开发平台,使用Access做的,在我们…
《连连看》游戏,使用Access做开发平台,对使用VBA处理图像及其他数据有一定帮助。另外,对连连看游戏及规则的算法实现,充分利用了AccessVBA中的内置对象,减少了编程的难度。-" Lianliankan" game development platform to use Access to do, on the use of VBA to deal with images and other data have some help. In addition, the rules of games and Lianliankan algorithm makes full use of the built-in object AccessVBA a decrease of programming more difficult.
- 2022-01-26 03:08:15下载
- 积分:1
-
AMBA_apb
AMBA_APB verilog code
- 2017-08-15 21:05:37下载
- 积分:1
-
调试导论
说明: 调试,是让所有OI选手头疼的一件事情。这套资料深入浅出,详细充实,提供了大量切实可行的编程技巧,是全网最好的OI调试指导资料之一。现公开分享,以宴飨各位OI选手。(Debugging is a headache for all OI players. This set of data is simple, detailed, and provides a large number of practical programming skills. It is one of the best OI debugging guidance materials in the whole network. Now share it publicly to feast all OI players.)
- 2020-06-17 06:40:01下载
- 积分:1
-
试析Microsoft文件系统的关键数据结构,快来下,下了我也好下东西了,速度
试析Microsoft文件系统的关键数据结构,快来下,下了我也好下东西了,速度-Microsoft File System Analysis of the key data structure, hurry, or I had things under the speed
- 2022-02-09 21:06:05下载
- 积分:1
-
Servo Module
配合NI采集板卡对伺服电机进行闭环控制的模块(A closed loop control module for servo motor with NI acquisition card.)
- 2018-10-18 08:49:50下载
- 积分:1
-
PWM Measurement (Software)
stm8sxx pwm mesarure code
- 2019-01-27 14:01:34下载
- 积分:1
-
Java 剑神游戏源代码
Java 剑神游戏源代码,以前诺基亚手机写的,现在好像过时了,不过一些基本的Java编程思路还是有的,而且对于转型Android也有参考作用。
- 2022-03-17 07:16:07下载
- 积分:1
-
用C来实现数据库编程,里面的源程序提供大家参考。
用C来实现数据库编程,里面的源程序提供大家参考。-C to achieve database programming, the inside source for your reference.
- 2022-04-23 10:49:26下载
- 积分:1
-
bearmtx
悬臂梁的matlab编写程序实现可视化,并计算固有频率(This is a program written by an Israeli professor to calculate rotor dynamics)
- 2019-05-07 19:29:04下载
- 积分: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