前言:花了一天时间写完之后,自己困惑了好久,因为自己不会用,一直没有看到视频中的演示过程,纠结许久,最后看了下前面的演示教程发现懂了。。。 加密具体代码参考:https://github.com/adezz/PeDialog 解密具体代码参考:https://github.com/adezz/She ...
// remote06.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" BOOL func(DWORD ProcessID,char* Dll ...
调用SetMonitorBrightness 代码示例: #pragma comment(lib, "dxva2.lib") #include <windows.h> #include <lowlevelmonitorconfigurationapi.h> #include <physicalmon ...
BOOL FreeMyResource(UINT uResouceName,char *szResourceType,char *szFileName) { HRSRC hRsrc = ::FindResource(NULL,MAKEINRESOURCE(uResouceName),szResour ...
office2010安装提示报错 由于下列原因,安装程序无法继续,需要计算机安装MSXML版本6.10.1129.0 step one 1.查看电脑是32还是64位。选择对应下载。 https://www.microsoft.com/zh-cn/download/details.aspx?id=62 ...
文本文件的换行符 方法一: var EOL = fileContents.indexOf("\r\n") >= 0 ? "\r\n" : "\n"; 方法二: var EOL = (process.platform 'win32' ? '\r\n' : '\n') 删除文件 var fs = req ...
分类:
Web程序 时间:
2020-06-29 20:12:49
阅读次数:
82
#include <winsock2.h> #ifdef _WIN32 WORD wVersionRequested; WSADATA wsaData; int err; int connectCount = 0; struct sockaddr_in RecvIndexAddr; int nNet ...
只需要调用WM_CTLCOLORLISTBOX和WM_CTLCOLOREDIT来分别处理编辑框和下拉列表。 Combox的创建: int xpos = 100; // Horizontal position of the window. int ypos = 100; // Vertical pos ...
Unity3D2018.3版本打包UWP遇到IOException: Win32 IO return
分类:
编程语言 时间:
2020-06-28 16:48:35
阅读次数:
172
添加Microsoft.Win32程序集 private void OnOpenFile(object sender, EventArgs e) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Title ...