-
I ve made an application that crawling the web base on DFS algorithm. Thanks.
I ve made an application that crawling the web base on DFS algorithm. Thanks.
- 2022-08-24 22:37:37下载
- 积分:1
-
设计一个文件的合并和分割工具。
(1)要求图形界面,用户界面友好。
(2)可以将几个文件(能在硬盘中选择的)按照用户输入的大小分割成几个小文件,同样,...
设计一个文件的合并和分割工具。
(1)要求图形界面,用户界面友好。
(2)可以将几个文件(能在硬盘中选择的)按照用户输入的大小分割成几个小文件,同样,也可以将几个小文件 合并成一个大文件。文件名和存储路径可以由用户输入,也可以选择硬盘上的文件名和路径。
(3)可在工具中显示合并有关文件的信息和合并后各个小文件的有关信息,包括文件太小,文件所在位置,文件 名称,文件的所有者等信息。
-design of a document to the merger and segmentation tools. (1) requires a graphical interface, user friendly interface. (2) can be several documents (in the hard disk of choice) according to the size of user input is divided into several small files, as are several small can be merged into one document file. Name and storage paths can be input by the user, can also choose to drive on the file name and path. (3) The instrument shown in the merger of the information and documents after the merger of various small documents relevant information, including documents too small, the location of documents, document name, the owner of documents and other information.
- 2022-03-05 06:02:41下载
- 积分:1
-
change the screen resolution, dynamic programmed to change the screen resolution...
改变屏幕分辨率,程序控制动态改变屏幕的分辨率。-change the screen resolution, dynamic programmed to change the screen resolution.
- 2022-03-06 12:52:58下载
- 积分:1
-
实现定时器算法逻辑,本身不带定时驱动器 TimerLogic实现了一个模拟的时钟,这个时钟的最上一层(类似秒针)是一个256个刻度的盘子,下面四层(类似分钟,时...
实现定时器算法逻辑,本身不带定时驱动器 TimerLogic实现了一个模拟的时钟,这个时钟的最上一层(类似秒针)是一个256个刻度的盘子,下面四层(类似分钟,时针)有刻度是64的小盘子,上层转一圈之后下一层的刻度就走一个刻度。指示当前盘子走到那个刻度是TimerVec(或TimerVecRoot)的index。-achieve timer algorithm logic, it should not take regular drives TimerLogic achieved a simulated clock, the clock on the floor (similar hands of) 256 is a calibration of the dishes, the following four (similar minute hand of a clock) is a scale of 64 small plates, the upper circle turn Zhi after the next level of calibration leave a mark. The current instructions that come calibration plate is TimerVec (or TimerVecRoot) index.
- 2023-03-20 20:00:04下载
- 积分:1
-
用c++制作的简易计算器,用到了mfc,望采纳~
用c++制作的简易计算器,用到了mfc,望采纳~
- 2023-04-06 13:30:04下载
- 积分:1
-
我们都知道一些键盘事件。今天我做了一个键上下着…
大家都知道键盘上几个的事件吧。
今天我就作了一个用上下左右键控制图标的小程序,帮助你理解这几个事件。。很好玩的。-we all know several of the keyboard events. Today I made a key up and down around the small icon control procedures to help you understand these events. . Very fun.
- 2022-03-05 13:10:43下载
- 积分:1
-
This is a countdown procedures, he will retain the desktop tools of a tiny show...
这是一个倒计时程序,他会在桌面上保留一个小小的工具条,显示距离某个日子(如考研)还有多少天。拉开程序界面之后,还可以在每一天里面写上数条笔记,记下要做的事情,比如读书计划等。-This is a countdown procedures, he will retain the desktop tools of a tiny show from a particular day (taking tests) how many days. After the proceedings started interface, but also on every day they write a few notes, recording things to do, such as reading programs.
- 2022-01-26 05:03:26下载
- 积分:1
-
递归的应用:最简单分形图形实现ksqx
递归的应用:最简单分形图形实现ksqx-recursive applications : the most simple Fractal Graphics ksqx
- 2022-04-12 06:50:13下载
- 积分:1
-
VC毛玻璃
#define GDIPVER 0x0110 //定义高版本的GDI+(1.1)
#include
#include
#include
#include
#include
#pragma comment(lib,"GdiPlus.lib")
using namespace Gdiplus;
#include
#pragma comment(lib,"dwmapi.lib")
//Aero效果是否已启用
BOOL IsCompositionEnabled()
{
BOOL bEnabled,bResult;
bResult = (SUCCEEDED(DwmIsCompositionEnabled(&bEnabled)) && bEnabled);
return bResult;
}
//对已分层的窗口启动玻璃效果
HRESULT EnableBlurBehindWindow(HWND hWnd, //窗口句柄
BOOL bEnable = TRUE, //启用或禁用
HRGN hRgn = 0, //模糊窗体中某个区域
BOOL bTransitionOnMaximized = FALSE) //最大化时是否启用
{
DWM_BLURBEHIND blurBehind = { 0 };
blurBehind.dwFlags = DWM_BB_ENABLE | DWM_BB_TRANSITIONONMAXIMIZED;
blurBehind.fEnable = bEnable;
blurBehind.fTransitionOnMaximized = bTransitionOnMaximized;
if (bEnable && hRgn != NULL)
{
blurBehind.dwFlags |= DWM_BB_BLURREGION;
blurBehind.h
- 2023-05-01 15:10:04下载
- 积分:1
-
Use MFC to do the caculator.
Use MFC to do the caculator.
- 2022-03-04 21:35:52下载
- 积分:1