-
这是一个只允许输入既定范围数字的编辑控制
这是一个只允许输入既定范围数字的编辑控制-This is only an established framework to allow the importation of digital editing control
- 2022-06-01 08:49:06下载
- 积分:1
-
Recursive folder copy between database tables and cross
文件夹递归拷贝及跨数据库表间拷贝,文件夹递归拷贝及跨数据库表间拷贝-Recursive folder copy between database tables and cross-copy, copy folder recursive and inter-copy between database tables
- 2022-02-12 22:37:16下载
- 积分:1
-
计算器能够实现基本的四则运算代码看起来简单能适应大多数程序初学者...
计算器能够实现基本的四则运算代码看起来简单能适应大多数程序初学者-Calculator to achieve the basic four computing code looks simple procedures to adapt to the majority of beginners
- 2022-02-21 18:59:43下载
- 积分:1
-
paypal查询和paypal退款
paypal 查询和paypal退款
paypal查询和paypal退款
paypal 查询和paypal退款-scarchtransaction refundtrsaction
- 2022-03-24 09:58:25下载
- 积分:1
-
this procedure can be limited decimal part of the cycle bracketed together
这个程序可以把有限小数的循环部分用括号括起来-this procedure can be limited decimal part of the cycle bracketed together
- 2022-07-11 19:02:29下载
- 积分:1
-
实例292——创建记录当前鼠标所在窗口标题信息的鼠标钩子DLL
创建记录当前鼠标所在窗口标题信息的鼠标钩子DLL。
- 2022-04-09 21:18:57下载
- 积分:1
-
Bluetooth programmer can direct them to the Bluetooth module for beginners shoul...
蓝牙程序可以直接烧写到蓝牙模块当中对于初学者应该是一个很好的帮助-Bluetooth programmer can direct them to the Bluetooth module for beginners should be a very good help
- 2023-04-07 21:25:04下载
- 积分:1
-
一个材料力学课程的作业,用于惯性矩的计算,虽然比较小,但也是我平时学VB的积累。...
一个材料力学课程的作业,用于惯性矩的计算,虽然比较小,但也是我平时学VB的积累。-a mechanical operation of the courses, for the moment of inertia, although relatively small, but I always learn is the accumulation of VB.
- 2023-03-22 09:55:03下载
- 积分:1
-
简单的邮件发件人
这个简单的邮件发件人被编码在 c# 中,使用 SMTP 协议......
- 2022-03-03 13:07:47下载
- 积分: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