-
改良版的TImage构件(超过100个的画笔样式,50种以上的显示特效)...
改良版的TImage构件(超过100个的画笔样式,50种以上的显示特效)-modified version of the TImage component (over 100 of the brush styles, the more than 50 special effects show)
- 2022-12-05 17:20:03下载
- 积分:1
-
one fake outlook interface procedures, and includes the interface of the system,...
一款仿outlook的界面程序,并且包含了系统界面的部分,值得好好研究。-one fake outlook interface procedures, and includes the interface of the system, worthy of a thorough study.
- 2022-01-25 19:59:55下载
- 积分:1
-
实现了上回说到的多功能文本框之后,接下去的任务就是做一个表情符号选择器:CIconPicker。...
实现了上回说到的多功能文本框之后,接下去的任务就是做一个表情符号选择器:CIconPicker。-achieved on the back said multifunctional text box, the next task is to do a symbolic expression choice : CIconPicker.
- 2022-01-28 08:37:03下载
- 积分:1
-
通过SubClass来处理窗口消息
通过SubClass来处理窗口消息-through the window to SubClass news
- 2023-04-04 06:35:03下载
- 积分:1
-
MFC创建进程、打开进程、终止进程
资源描述
创建进程、打开进程、终止进程
*两个函数 CreateProcess、openProcess、TerminateProcess
*获得进程句柄
*获得进程号
*提升进程权限
*Microsoft Spy++
操作平台:win10+vs2013 pro
操作步骤:
1、创建进程
PROCESS_INFORMATION pi;//进程信息结构
STARTUPINFO si;//启动信息结构
memset(&si, 0, sizeof(si));
si.cb = sizeof(si);
si.wShowWindow = SW_SHOW;
si.dwFlags = STARTF_USESHOWWINDOW;
TCHAR szPath[] = TEXT("c:windowssystem32
otepad.exe E:c++MFCa.txt");
BOOL bRet = ::CreateProcess(NULL, szPath, NULL, FALSE, NULL, NULL, NULL, NULL, &si, &pi);
int error = GetLastError();
if (bRet)
{
::CloseHandle(pi.hThread);
::CloseHandle(pi.hProcess);
AfxMessageBox(TEXT("创建进程成功"));
}
else
{
AfxMessageBox(TEXT("创建进程失败"));
}
2、打开进程
DWORD pid;
//若有指定窗口类和窗口名称则表示成功返回一个窗口的句柄
HWND hCalc = ::FindWindow(TEXT("Note
- 2022-03-25 15:36:01下载
- 积分:1
-
VB不规则窗体生成器 VB不规则窗体生成器
VB不规则窗体生成器 VB不规则窗体生成器-VB irregular forms generator VB irregular forms generator
- 2022-06-27 12:03:04下载
- 积分:1
-
图像和视频编码的国际标准,视频部分,欢迎参考
图像和视频编码的国际标准,视频部分,欢迎参考-image and video coding international standards, video, welcomed the reference
- 2022-03-21 20:25:28下载
- 积分:1
-
VC++ 真彩工具栏,简单,非常好用的代码,希望大家喜欢
VC++ 真彩工具栏,简单,非常好用的代码,希望大家喜欢-VC sleekly Toolbar, a simple and very user-friendly code, hope you like
- 2022-05-13 01:02:10下载
- 积分:1
-
学生信息管理系统(源代码)VB的,,可作为参考
学生信息管理系统(源代码)VB的,,可作为参考-Student Information Management System (source code) VB, and can be used as reference
- 2022-03-01 12:21:00下载
- 积分:1
-
生成人工地震波程序
生成人工地震波程序-artificial seismic waves generated procedures
- 2022-03-19 15:45:46下载
- 积分:1