-
用VB写的扫雷,功能虽然有些简单,但是用的数据结构更简单,用简单的控件的实现方法,想给大家分享下~...
用VB写的扫雷,功能虽然有些简单,但是用的数据结构更简单,用简单的控件的实现方法,想给大家分享下~-Using VB to write the de-mining, functional although some simple, but the data structure used in a more simple, with a simple implementation of the control method," d like to share with you the next ~
- 2023-04-20 23:05:03下载
- 积分:1
-
C# 程序互斥实例
C# 程序互斥实例,只允许运行一个程序实例的演示,互相排斥不让另一个运行,若运行两次本程序,则只有一个线程,会给出提示正在运行。
- 2022-02-13 10:56:13下载
- 积分:1
-
统计输入文件的行数、空格数、元音字母数、辅音字母数、非空白字母数、非空的行数...
统计输入文件的行数、空格数、元音字母数、辅音字母数、非空白字母数、非空的行数-statistical inputs the line a few, a few spaces, a few vowel and consonant few letters, a few non-blank letters, non-empty rows
- 2022-08-14 20:10:44下载
- 积分:1
-
Visual C# 隐藏、显示开始按钮
C# 隐藏、显示开始按钮,把Windows的开始菜单隐藏起来,看不到“开始”菜单了,Windows7则隐藏了窗口图标,不过这样会很不方便哦,本源码只是学习C#与Windows之间的相关编程技巧,下面的代码实现了隐藏显示开始菜单的功能:
[DllImport("user32.dll")]//寻找窗口列表中第一个符合指定条件的顶级窗口
public static extern int FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]//在窗口列表中寻找与指定条件相符的第一个子窗口
public static extern int FindWindowEx(int hWnd1, int hWnd2, string lpsz1, string lpsz2);
[DllImport("user32.dll")]//控制窗口的可见性
public static extern int ShowWindow(int hwnd, int nCmdShow);
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_HIDE);//隐藏开始按钮
else if (radioButton2.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_SHOW);//显示开始按钮
}
- 2022-05-20 11:42:02下载
- 积分:1
-
Huawei internal procedures in designing the training program design for large
华为内部程序设计培训 对大规模程序设计很有帮助-Huawei internal procedures in designing the training program design for large-scale helpful
- 2022-02-18 15:34:30下载
- 积分:1
-
颜色拾取器,能拾取当前鼠标的网页所需要色彩值。非常好用,希望大家喜欢!...
颜色拾取器,能拾取当前鼠标的网页所需要色彩值。非常好用,希望大家喜欢!-color picking device that can pick up the mouse"s current website needed color value. Very good, hope you like them!
- 2022-03-30 21:57:39下载
- 积分:1
-
JBuilder开发的Java聊天程序
使用JAVA制作的局域网聊天程序_JBuilder开发的Java聊天程序,支持聊天头像,支持功能设置、断线、离线、在线等状态更改,当时是一个JAVA作业,看来完成的相当不错哦。
- 2023-05-28 15:20:04下载
- 积分:1
-
动态计算网络最长最短路线
动态计算网络最长最短路线-dynamic computing network longest shortest route
- 2022-01-24 18:53:49下载
- 积分:1
-
C# 使用INNER JOIN实现不等连接
C# 使用INNER JOIN实现不等连接,查询除李*灵所在院系外所有院系学生的信息。
- 2022-09-06 12:40:02下载
- 积分:1
-
how to build a stub in c++ test.this source code show you the way!
how to build a stub in c++ test.this source code show you the way!
- 2022-02-02 14:18:41下载
- 积分:1