-
将经纬度坐标转换为KML文件,很好用!
经度、纬度、大地高转KML代码,VS2012中测试通过,用Google Earth加载没有问题。
- 2022-02-15 15:46:28下载
- 积分:1
-
通过计算文件的CRC32值,对指定目录的文件进行去重。(支持线程,右键菜单)...
通过计算文件的CRC32值,对指定目录的文件进行去重。(支持线程,右键菜单)-Document by calculating CRC32 value of the designated directory to re-file. (Support thread, right menu)
- 2022-07-24 17:09:32下载
- 积分:1
-
汇编学习书箱,对刚学汇编的朋友来说是很多的选择
汇编学习书箱,对刚学汇编的朋友来说是很多的选择-Compilation of the book to learn me, just school friends is a compilation of many choices
- 2022-07-05 13:46:04下载
- 积分:1
-
多线程、内存共享编程。有五只蜗牛赛跑哦。
多线程、内存共享编程。有五只蜗牛赛跑哦。-Multi-threaded, shared memory programming. Has five oh snail race.
- 2022-03-11 08:26:14下载
- 积分:1
-
适用于初级用户。希望这些代码可以给大家带来方便。
适用于初级用户。希望这些代码可以给大家带来方便。-Applicable to primary users. These codes can hope to bring convenience to everyone.
- 2022-07-02 20:32:33下载
- 积分:1
-
一POS机通讯Active程序,
一POS机通讯Active程序
一POS机通讯Active程序,
一POS机通讯Active程序-a POS machine communications Active procedures, a POS machine communication procedures Active
- 2022-09-16 22:10:03下载
- 积分:1
-
A Crash Course on the Depths of Win32 Structured Exception Handling
A Crash Course on the Depths of Win32 Structured Exception Handling -A Crash Course on the Depths of Win32 Structured Exception Handling.
- 2022-07-18 10:26:18下载
- 积分:1
-
使用C#制作屏幕保护的方法
使用C#制作屏幕保护的方法-produced using C# screen protection methods
- 2023-03-14 04:10:03下载
- 积分:1
-
pcie的windows驱动已经fpga代码,全
pcie的windows驱动已经fpga代码,拿来就可以用,
- 2023-05-11 08:30: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