-
一个非常好的微处理器检测遥控器编码的C++
原代码项目文件,直接可用,LED显示,成果真诚奉献...
一个非常好的微处理器检测遥控器编码的C++
原代码项目文件,直接可用,LED显示,成果真诚奉献-a very good microprocessor remote detection coding in C source code project documents directly available, LED Display, results sincere dedication
- 2022-03-04 04:25:58下载
- 积分:1
-
这是一个猜数字的小游戏,当用户输入一个数字开始猜后,程序会根据用户所猜的数字大小和正确答案来比较,然后提示用户数字是猜大了还是小了,让用户继续猜,直到正确....
这是一个猜数字的小游戏,当用户输入一个数字开始猜后,程序会根据用户所猜的数字大小和正确答案来比较,然后提示用户数字是猜大了还是小了,让用户继续猜,直到正确.-This is a small viewing of the game, when a user input figures began to guess, the procedures under which users guess the number and size compared to the correct answer, and then prompts the user to guess the number is larger or smaller, allows users to guess until right.
- 2023-02-27 20:20:03下载
- 积分:1
-
图标和位图
系统图标参考,里面包含多种bmp格式的图标,如主页,设置等-icon and bmp
- 2022-01-26 07:18:00下载
- 积分:1
-
自适应遗传算法在多模图像配准中的应用.doc
自适应遗传算法在多模图像配准中的应用.doc-Adaptive genetic algorithm in multi-mode image registration application. Doc
- 2022-09-18 06:55:04下载
- 积分:1
-
HY57V561620,sdram芯片,大家参考用。
HY57V561620,sdram芯片,大家参考用。-HY57V561620, sdram chip reference U.S..
- 2022-05-26 02:43:22下载
- 积分: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
-
用delphi写的密码管理工具.
用delphi写的密码管理工具.-used to write the password management tool.
- 2022-04-14 10:38:16下载
- 积分:1
-
音乐类型的好网站
音乐类型的好网站-types of good music website
- 2022-08-19 14:08:31下载
- 积分:1
-
这是我们做的一个作业 摸60计数器,用Quartus ii 做的 ,内容齐全 不可不看。...
这是我们做的一个作业 摸60计数器,用Quartus ii 做的 ,内容齐全 不可不看。-This is the one we do feel 60 counter operation with Quartus ii do. complete contents can not see.
- 2022-01-26 03:02:06下载
- 积分:1
-
2d array implemented using pointer or template
在C++中,可以直接用[][]实现二维数组,但是[][]不能重载,所以,用模版与指针实现的自定义二维数组-2d array implemented using pointer or template
- 2022-01-22 13:39:16下载
- 积分:1