-
实现的是一个虚拟示波器的功能,但只能实现模拟,不能实际测量,只需增加一个模块就行了,运行时注意不要让自动的最大值与最小值相同,否则会一直跳闪,还有就是有些功能测
实现的是一个虚拟示波器的功能,但只能实现模拟,不能实际测量,只需增加一个模块就行了,运行时注意不要让自动的最大值与最小值相同,否则会一直跳闪,还有就是有些功能测的不是很准确,需要调节。-Realize a virtual oscilloscope functions, but only the realization of simulation, not actual measurements, just add a module on the list, run-time attention to not to let the automatic the same maximum and minimum value, otherwise they will always jump flash, there is Some functional test is not very accurate, needs to adjust.
- 2023-02-21 21:20:03下载
- 积分:1
-
the boat are so strong that it can afford two item
the boat are so strong that it can afford two item
- 2022-02-13 07:50:28下载
- 积分:1
-
将用户指定的符合iso
将用户指定的符合iso-9660标准的文件的信息dump出来。-Will be user-specified in line with the iso-9660 standard document dump out the information.
- 2022-02-15 03:18:03下载
- 积分:1
-
CGA模式下的绘图程序,绘制梯形 可以选择画几个(8086)
CGA模式下的绘图程序,绘制梯形 可以选择画几个(8086)-CGA graphics mode procedures, mapping trapezoidal can choose several paintings (8086)
- 2022-01-30 16:00:45下载
- 积分:1
-
一个用vc编写的猜数字游戏,简单易用,与文曲新中的那个一样,只是这个是用vc写的罢了...
一个用vc编写的猜数字游戏,简单易用,与文曲新中的那个一样,只是这个是用vc写的罢了-vc prepared with a viewing of the game, simple to use, with the venturi that the new, but it is just a write vc
- 2022-01-28 21:17:32下载
- 积分:1
-
这是个关于“日期、菜单和字符串”C函数代码
这是个关于“日期、菜单和字符串”C函数代码-This is on the "date menu, and the string" C function code
- 2022-03-22 12:58:09下载
- 积分:1
-
Euler公式与改进Euler比较。
Euler公式与改进Euler比较。-Euler formula and improve Euler comparison.
- 2022-07-02 18:34:40下载
- 积分: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
-
MFC汉诺塔游戏。
软件设计了增强的视觉反馈效果,当鼠标滑过,颜色会变得更为鲜艳。【三列的标准色彩为 红、绿、蓝 。】
每当单击某一列,颜色变成灰黑色,...
MFC汉诺塔游戏。
软件设计了增强的视觉反馈效果,当鼠标滑过,颜色会变得更为鲜艳。【三列的标准色彩为 红、绿、蓝 。】
每当单击某一列,颜色变成灰黑色,表示可以拖动这一列。
请保持exe文件与snd文件夹处于同一目录下面!否则听不到正确的声音!
BUG(仅列举未改正的):
1.延时使用了sleep函数,而这个函数 运行时 无法接收其他操作,可能导致失去相应。
2.当圆盘数调至 8个以上时,有时(偶尔)会出现无故的错误,比如程序报错而关闭。
原因尚不可知,不过应该不是核心算法的错误,可能是某一处指针使用不够谨慎。
- 2023-01-20 19:15:03下载
- 积分:1
-
有大量的源程序,简单易懂。虽然比较简单,但是也涵盖了c语言的精华。...
有大量的源程序,简单易懂。虽然比较简单,但是也涵盖了c语言的精华。-A large number of source code, easy to understand. Although relatively simple, but it also covers the essence of the c language.
- 2022-02-03 18:19:02下载
- 积分:1