-
Osprey源代码,绝对值得一看,Osprey权威资源代码
Osprey源代码,绝对值得一看,Osprey权威资源代码-Osprey source code is absolutely worth a visit, Osprey authoritative source code
- 2023-01-04 02:55:03下载
- 积分:1
-
人体皮肤检测 Ycbcr
输入位图和使用像素阵列、 保存像素值和得到像素到 Ycbcr 阵列就可以使人体皮肤的 RGBuse RGB 数组
- 2022-11-05 08:05: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
-
一个窗口格式,有下拉菜单。比较简单的程序,从朋友那里拿来的,希望对大家有所帮助!...
一个窗口格式,有下拉菜单。比较简单的程序,从朋友那里拿来的,希望对大家有所帮助!-A window format, there is the drop-down menu. Relatively simple procedure, used from a friend and would like to help everyone!
- 2022-08-24 02:37:32下载
- 积分:1
-
一个可缩放的tab试图的例子,tab视图中的控件可以随着大小缩放...
一个可缩放的tab试图的例子,tab视图中的控件可以随着大小缩放--An example of zoomable view,the control in which can change its size along
- 2023-05-07 22:00:03下载
- 积分:1
-
学生信息管理系统(源代码)VB的,,可作为参考
学生信息管理系统(源代码)VB的,,可作为参考-Student Information Management System (source code) VB, and can be used as reference
- 2022-03-01 12:21:00下载
- 积分:1
-
图形界面PING 图形界 面PING
图形界面PING 图形界 面PING -graphical interface PING PING GUI graphical interface graphics sector PING- PING
- 2022-06-14 11:03:08下载
- 积分:1
-
PCSC Delphi sample code
PCSC Delphi sample code源码, 帮助你连线到smart card, 并取得需要的资讯
程式码精简易懂,适合入门的朋友使用
另外也希望可以跟大家交流更多的源码
- 2023-03-05 00:15:04下载
- 积分:1
-
officexpmenu
一个officeXPmenu类的实现。
本人从网上下载的源代码,有兴趣的朋友可以参考一下。
- 2022-12-03 04:00:03下载
- 积分:1
-
一套java
一套java-awt风格的界面库,推荐下载--A suit of interface libraries with java-awt style ,recommend!
- 2022-06-17 23:31:03下载
- 积分:1