-
VC 7.0 编译通过。本代码可以演示动态移动目标。
VC 7.0 编译通过。本代码可以演示动态移动目标。-by VC 7.0 compiler. This code will demonstrate dynamic moving targets.
- 2022-03-25 22:14:29下载
- 积分:1
-
使用javascript 做的图上化线的例子
使用javascript 做的图上化线的例子-use map of the line of examples
- 2022-07-28 05:02:46下载
- 积分:1
-
和金山的界面一样的,很都窗口的COOL的窗体。
和金山的界面一样的,很都窗口的COOL的窗体。-Jinshan and the same interface, it has a window of COOL forms.
- 2022-03-20 05:17:30下载
- 积分:1
-
<Visual Preutill> C routines in a book, chapter by chapter, Table of Conte...
一书的例程,按章节目录- C routines in a book, chapter by chapter, Table of Contents
- 2022-01-28 16:51:45下载
- 积分:1
-
一个圆形的进度类,风格比较独特,推荐下载
一个圆形的进度类,风格比较独特,推荐下载--A class of round progress,it has special style,recommend!
- 2022-04-16 06:51:14下载
- 积分:1
-
window应用程序界面设计, 实现半透明窗体效果
window应用程序界面设计, 实现半透明窗体效果-window Application Program Interface Design, Implementation Form translucent effect
- 2022-02-05 00:27:16下载
- 积分: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
-
c语言树的各种功能实现,包括加儿子,几个儿子,几层等运算...
c语言树的各种功能实现,包括加儿子,几个儿子,几层等运算-c language tree realization of various functions, including the Canadian son, sons, layers and other computing
- 2023-03-24 16:00:03下载
- 积分:1
-
嵌入式界面
嵌入式,界面,
- 2022-09-21 16:15:03下载
- 积分:1
-
VB style tool tip control similar to IntelliSense ToolTip
是我在网上找的,版权归原作者所有。...
VB style tool tip control similar to IntelliSense ToolTip
是我在网上找的,版权归原作者所有。-VB style tool tip control similar to IntelliSense ToolTip is what I find online, and belongs to original author.
- 2023-06-26 13:35:04下载
- 积分:1