-
[Fibonacci computation Dev
[斐波那契运算DEV-C++编译器]学习,学习东西,以实现C语言的方式。
- 2023-02-07 07:45:03下载
- 积分:1
-
数据结构综合实验的课题,重言式,用C语言实现的,也是比较多人选的...
数据结构综合实验的课题,重言式,用C语言实现的,也是比较多人选的-comprehensive experimental data structure issues, tautology, with the C language, as well as more candidates
- 2022-05-19 00:27:35下载
- 积分:1
-
关于一个iocompletionport的例子
关于一个iocompletionport的例子-on a iocompletionport example
- 2022-07-27 11:21:08下载
- 积分:1
-
写了一个获取SolidWorks文件结构的代码。以XML开式输出。
写了一个获取SolidWorks文件结构的代码。以XML开式输出。-Write a SolidWorks file structure to obtain the code. Open to XML output.
- 2022-03-06 15:21:48下载
- 积分:1
-
SensorSimII is the framework of a simulator that I have been working on to study...
SensorSimII is the framework of a simulator that I have been working on to study how future sensor networks should operate. the simulator is written in a modular fashion so that it can be adapted to serve a number of needs. However, please remember that it is still a work in progress. This web page is here just to give a glimpse of the approach we ve taken with this simulator. Likewise this web page is simply preliminary information to attempt to answer some of the questions that researchers might have about this project.-SensorSimII is the framework of a simulator that I have been working on to study how future sensor networks should operate. the simulator is written in a modular fashion so that it can be adapted to serve a number of needs. However, please remember that it is still a work in progress. This web page is here just to give a glimpse of the approach we ve taken with this simulator. Likewise this web page is simply preliminary information to attempt to answer some of the qu
- 2022-01-28 02:26:12下载
- 积分:1
-
A. Executive SPLIB B. Implementation SPDOS C. loading D. Pinyin module loading W...
A.执行SPLIB B.执行SPDOS C.装载拼音模块D.装载五笔字型输入模块32.在汉字输入状态下, 按下Shift+A组合键后,输入了_______。 ... A.按原代码方式B.按指定字体C.按标准方式D. 按分栏方式41.FoxBASE启动后,在圆点"."提示符下,执行命令文件MAIN. -A. Executive SPLIB B. Implementation SPDOS C. loading D. Pinyin module loading WBZX module 32. The state of inputting Chinese characters, press Shift A key combinations, the importation of _______. The original code ... A. B. manner specified by standard fonts C. D. manner by way 41.FoxBASE columns after commencement, the dots "." Prompt implementation of an order document MAIN.
- 2022-02-03 01:43:58下载
- 积分: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
-
Aes 加密代码,只为测试,使用 C 语言
该应用程序向导创建的测试应用程序为您服务。该文件包含测试应用程序组件每个文件摘要的内容。Test.vcproj这是使用应用程序向导生成的VC++项目的主项目文件。它包含有关该文件的Visual C++版本的信息的产生的信息,并关于向导选择应用程序平台,配置和项目信息的功能。TEST.CPP这是主要的应用源文件。////////////////////////////////////////////////// ///////////////////////////其他标准文件:StdAfx.h中,StdAfx.cpp这些文件被用于生成名称test.pch预编译头(PCH)文件,名为StdAfx.obj式预编译的文件。////////////////////////////////////////////////// ///////////////////////////其他意见:应用程序向导使用“TODO:”注释指示应添加或源代码的定制部件。
- 2022-03-20 03:29:00下载
- 积分:1
-
maze is an adventure game in turboC2 environment prepared by the small games, as...
迷宫探险游戏是一个在turboC2环境下编写的小游戏,该游戏只要是完成小人从左上角闯过迷宫到达右下角的路径探险-maze is an adventure game in turboC2 environment prepared by the small games, as long as the game is complete villains leaped from the upper left corner of the maze to reach the lower right path adventure.
- 2022-06-20 09:56:53下载
- 积分:1
-
解决汉诺塔问题的cpp文件
解决汉诺塔问题的cpp文件-solve problems cpp file
- 2023-07-23 23:30:03下载
- 积分:1