-
VC中ODBC数据库技术应用源码详解 Serial Communication in Win32 属性页...
VC中ODBC数据库技术应用源码详解 Serial Communication in Win32 属性页-VC ODBC database application source Elaborates on Serial Communication in Win32 attributes page
- 2022-08-15 22:21:07下载
- 积分:1
-
采用tcp方式,实现文字聊天的客户端,在vc环境下实现
采用tcp方式,实现文字聊天的客户端,在vc环境下实现-Tcp approach used to achieve a text chat client, in the circumstances realize vc
- 2022-09-29 19:15: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
-
on segmentation Operator Operator inverse pixel Gaussian operator of Image Proce...
关于sobel算子 逆sobel算子 高斯算子等图像处理算子 和大家共享,谢谢1-on segmentation Operator Operator inverse pixel Gaussian operator of Image Processing Operator and share Thank you, a
- 2022-03-13 13:12:25下载
- 积分:1
-
简单的小程序,实现的是随机出10道四则运算的题目,同时可以批改和打分。主要在界面方面花了点时间...
简单的小程序,实现的是随机出10道四则运算的题目,同时可以批改和打分。主要在界面方面花了点时间-simple small programs to achieve the 10 random out four computing topics, but can also mark and scoring. The main interface spent time
- 2023-07-06 00:20:03下载
- 积分:1
-
MFC学生成绩管理系统
MFC学生成绩管理系统
- 2022-02-15 16:41:20下载
- 积分:1
-
表头冻结
基于 jquery , 可实现锁定表格, 冻结表头, 行, 列, 简单实用;
- 2022-03-25 00:14:04下载
- 积分:1
-
good graphics processing, support for multiple graphics algorithm, which is perf...
很好的图形处理程序, 支持多种图形算法,很适合初学者-good graphics processing, support for multiple graphics algorithm, which is perfect for beginners
- 2023-09-06 17:20:04下载
- 积分:1
-
漂亮的工具栏和菜单渲染器
漂亮的工具栏和菜单渲染器,WinForm程序,使用渲染器重绘了菜单栏和工具栏,很漂亮的效果,有简单的例子代码,可直接运行
- 2022-04-18 17:38:10下载
- 积分:1
-
以位图为背景的对话框类CBitmapDialog的演示程序。
以位图为背景的对话框类CBitmapDialog的演示程序。- Take position chart as background dialog box class
CBitmapDialog demonstration program.
- 2022-02-25 14:38:05下载
- 积分:1