-
直接修改注册表,改变环境变量,JDK安装的时候可以用这个
直接修改注册表,改变环境变量,JDK安装的时候可以用这个-Directly modify the registry to change the environment variables, JDK installation time can use this
- 2022-07-12 04:19:04下载
- 积分:1
-
Send Key Visual Basic
Send key is project其对Send key的操作活动事件是pass,键事件用于处理此项目。此项目在Microsoft visual basic 6.0版本上工作。
- 2022-02-22 09:12:36下载
- 积分:1
-
vc 实现字幕滚动效果的对话框
vc 实现字幕滚动效果的对话框 -vc
- 2023-05-28 17:30:03下载
- 积分:1
-
创建单实例的应用程序
创建单实例的应用程序-create single-instance applications
- 2022-03-21 14:10:24下载
- 积分:1
-
汉字和16进制互换
估计有很多相似的程序
汉字和16进制互换
估计有很多相似的程序-Chinese characters and 16-band exchange is estimated that the procedure has many similarities
- 2022-12-19 21:45:03下载
- 积分:1
-
这是基于6个算法的单
这是基于VC++6.0的单用户注水算法的源程序,-This is based on the VC++ 6.0 Algorithm for single-user water source,
- 2022-05-14 00:31:21下载
- 积分:1
-
方便的读取矢量数据的类库 尤其是shape 数据的读写
方便的读取矢量数据的类库 尤其是shape 数据的读写-hope you download this lib hope you download this lib hope you download this lib hope you download this lib
- 2022-08-17 22:22:16下载
- 积分:1
-
枚举WINDOWS所有可用端口,包含一个模块源码与一个窗体源码
枚举WINDOWS所有可用端口,包含一个模块源码与一个窗体源码-WINDOWS enumeration of all available ports, a module that contains source code form with a source
- 2022-12-24 10:30:03下载
- 积分:1
-
获取微信用户信息源码(.net)
通过网页获得微信OpenID以及用户性别,年龄等信息!!!!
- 2023-05-21 19:35:02下载
- 积分: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