-
矩阵相乘,演示了编辑框传输数据和显示,隐藏等功能。特别适合初学者学习和研究。...
矩阵相乘,演示了编辑框传输数据和显示,隐藏等功能。特别适合初学者学习和研究。-Matrix multiplication, demonstrate data edit box and display, hidden functions. Particularly suitable for beginners to learn and research.
- 2022-02-21 17:23:57下载
- 积分:1
-
生成人工地震波程序
生成人工地震波程序-artificial seismic waves generated procedures
- 2022-03-19 15:45:46下载
- 积分: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
-
界面漂亮的对话
一个非常漂亮的对话框界面,一个 漂亮的对话框界面。-nice dialogue interface
nice dialogue interface
- 2022-05-17 18:55:16下载
- 积分:1
-
用slider(滑动)控件控制视图的放大和缩小
视口跟窗口的变换算法,坐标系之间转换...
用slider(滑动)控件控制视图的放大和缩小
视口跟窗口的变换算法,坐标系之间转换-Use slider (sliding) control control view, as I zoom in and out with the window transform algorithm, coordinate system conversion between
- 2023-04-05 16:20:04下载
- 积分:1
-
包括界面设计、系统编程、数据库编程、组件对象模型、网络程序设计的实例。...
包括界面设计、系统编程、数据库编程、组件对象模型、网络程序设计的实例。-Including interface design, system programming, database programming, component object model, network programming examples.
- 2022-03-02 16:17:52下载
- 积分:1
-
XP样式 的资源浏览面板 Visual Basic源码
可根据自己的需要修改源码...
XP样式 的资源浏览面板 Visual Basic源码
可根据自己的需要修改源码-XP-style Explorer panel Visual Basic source code may need to be amended in accordance with their own source
- 2022-03-04 10:42:15下载
- 积分:1
-
基于bootstrap后台管理系统模板
资源描述基于bootstrap后台管理系统模板startbootstrap-sb-admin 界面节约 控件灵活 自己下载后做了一些修改
- 2023-01-05 10:55:04下载
- 积分:1
-
vc development interface is very troublesome, but pubMFCV can easily interface f...
vc 开发界面非常麻烦,但是pubMFCV就可以方便地进行界面的开发,并且转到vc上去,可以快速地开发-vc development interface is very troublesome, but pubMFCV can easily interface for the development, and up to vc, can be rapidly developed
- 2022-06-16 17:38:30下载
- 积分:1
-
VC interface display, split the window and realizing the complexity of the windo...
VC界面显示的,分割窗口,实现窗口复杂化-VC interface display, split the window and realizing the complexity of the window
- 2022-03-16 07:08:58下载
- 积分:1