-
用VHDL编写的关于counter的控制转换程序,希望大家喜欢,也可以学学哟!...
用VHDL编写的关于counter的控制转换程序,希望大家喜欢,也可以学学哟!-VHDL, on the counter control switching procedures in the hope that everyone likes, but also can learn yo!
- 2022-08-09 03:02:40下载
- 积分:1
-
职工管理系统,实现了查询,界面设计,数据库的连接!
职工管理系统,实现了查询,界面设计,数据库的连接!-Staff management system, the realization of the query, interface design, database connectivity!
- 2022-08-26 05:21:56下载
- 积分:1
-
c的小程序很有用的,我认为很好的,也蛮经典的!希望对大家有帮助!...
c的小程序很有用的,我认为很好的,也蛮经典的!希望对大家有帮助!-c small procedures very useful, I think very good, but also pretty classic! We want to help!
- 2023-06-21 05:05:04下载
- 积分:1
-
这里定义了一个编程语言称作C-M i n u s (或简称为C-),这是一种适合编译器设计方案的
语言,它比T I N Y语言更复杂,包括函数和数组。本质上...
这里定义了一个编程语言称作C-M i n u s (或简称为C-),这是一种适合编译器设计方案的
语言,它比T I N Y语言更复杂,包括函数和数组。本质上它是C的一个子集,但省去了一些重要-Here defines a programming language called C-M inus (or simply C-), which is a suitable compiler design language, it is more complex than the TINY language, including the functions and arrays. It is essentially a subset of C, but eliminating the need for a number of important
- 2022-09-03 03:10:03下载
- 积分:1
-
这是一个GB18030和UNICODE转换的程序,采用查表法。其中GB18030有两字节和四字节部分。两字节的好显示,而四字节的需要特殊处理。...
这是一个GB18030和UNICODE转换的程序,采用查表法。其中GB18030有两字节和四字节部分。两字节的好显示,而四字节的需要特殊处理。-This is a UNICODE conversion GB18030 and procedures, the use of look-up table method. GB18030 which there are two-byte and four-byte part. Two bytes of a good show, and four bytes of the need for special treatment.
- 2022-11-30 10:40:04下载
- 积分:1
-
压缩包中包含了大量各种数学问题算法的C语言源代码,可提供各种需要的移植...
压缩包中包含了大量各种数学问题算法的C语言源代码,可提供各种需要的移植-compression package contains a lot of mathematical problems algorithm C language source code that can provide a variety of needs transplant
- 2023-05-12 20:45:03下载
- 积分:1
-
This is called VC abnormal and unusual class of the use of usage, coupled with e...
这是冠以VC异常及异常处理类的使用用法,加上实例的说明,使你能很快不如编程的殿堂-This is called VC abnormal and unusual class of the use of usage, coupled with examples of the note, so that you can quickly program as a hall
- 2022-03-23 04:12:00下载
- 积分:1
-
DE(DifferentialEvoultion)_C++codes
DE是一个非常简单的基于种群的随机函数极小化方法,同时也是非常强大的。在第一届国际比赛中,他获得了第三名
- 2022-10-19 11:30:03下载
- 积分:1
-
这是STLport 5.2.1最新版,动态库的编译方式已经改变,不懂的到网上查找。...
这是STLport 5.2.1最新版,动态库的编译方式已经改变,不懂的到网上查找。-This is the latest version of STLport 5.2.1, dynamic libraries compiled method has been changed, do not understand the web to find.
- 2023-07-21 15:25:04下载
- 积分: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