-
Internet Explorer 4 style UI IE4.0风格的界面效果(29KB)
Internet Explorer 4 style UI IE4.0风格的界面效果(29KB)-style UI Batteries style interface effects (Take)
- 2023-03-14 14:40:03下载
- 积分:1
-
using cb establishment, the serial communication routines, the side tried absolu...
采用cb编制,串口通信的例程,一侧试过,绝对可以用-using cb establishment, the serial communication routines, the side tried absolutely can use
- 2022-03-10 02:29:13下载
- 积分:1
-
一些漂亮的提示信息代码 可以生成各种不同效果的提示
一些漂亮的提示信息代码 可以生成各种不同效果的提示-Some beautiful message code can generate a variety of different effects tips
- 2022-03-14 13:11:06下载
- 积分:1
-
peer
点对 话能同时控制对方的一个程序可以学习着用-peer-to-peer dialogue would contain a procedure for the other side can learn to use
- 2022-06-22 04:57:05下载
- 积分:1
-
图像预览
一个简单的工程,主要是用来预览图片,当用鼠标点击文件名时候,在对话框的下方会显示缩略图,每个图片文件对应一个缩略图,只需单击左键即可预览。
- 2022-01-25 14:16:50下载
- 积分:1
-
虚拟键盘
此项目包含简单的虚拟键盘,可以使用从由用户输入的字符或数字,computer.this 的设计项目一般为任何目的而设计,可以设置键盘的行动所需。
- 2022-07-01 18:38:45下载
- 积分: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
-
查找系统中存在的窗口,选择窗口后可以设定窗口的透明度
查找系统中存在的窗口,选择窗口后可以设定窗口的透明度-Systems that exist in search window, select the window you can set the transparency of the window
- 2022-06-01 15:27:19下载
- 积分:1
-
Chm help source
Chm帮助源程序-Chm help source
- 2023-08-31 10:05:03下载
- 积分:1
-
一个关于vb串口多线程通信的实例,可以看看。
一个关于vb串口多线程通信的实例,可以看看。-Vb serial port on a multi-threaded communication instance, you can look at.
- 2022-09-19 04:15:03下载
- 积分:1