-
6编程接口编程150例,精彩
vc++6.0编程150例 界面编程部分,内容精彩-vc 6.0 Programming Interface Programming 150 cases, as wonderful
- 2022-03-11 19:38:28下载
- 积分:1
-
simple e
简单的电子商务平台,提供给初学者参考。可以添加商品。有购物车的功能,可查看购物车等。-simple e-commerce platform for advanced users. Goods can be added. Cart is the function, such as View Cart.
- 2022-05-21 21:38:04下载
- 积分: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 very interesting VB prepared by the control (including source code and example...
一个很有意思的用VB编写的控件(包含源程序和范例),在窗口上添加一个眼睛,眼睛可以随着你的光标的移动而提溜溜的转动-a very interesting VB prepared by the control (including source code and examples), the addition of a window on the eyes, as the eyes can your cursor movement and rotation of shunning mention
- 2022-11-28 12:55:03下载
- 积分:1
-
一个很有用的文件分割程序代码,可以分割不方便移动的大文件,推荐!...
一个很有用的文件分割程序代码,可以分割不方便移动的大文件,推荐!-a very useful document segmentation code can be inconvenient mobile division of document and recommend it!
- 2022-03-01 15:18:33下载
- 积分:1
-
用户在窗口的不同区域移动鼠标时,光标将显示如下图所标识的不同箭头的形状。...
用户在窗口的不同区域移动鼠标时,光标将显示如下图所标识的不同箭头的形状。-Users in different regions of the window when you move the mouse, the cursor will display the following map identifies the shape of the different arrows.
- 2022-02-01 02:08:23下载
- 积分:1
-
XP风格的按钮的示例程序,并可简单地对按钮风格进行改变。
XP风格的按钮的示例程序,并可简单地对按钮风格进行改变。-XP-style button on the sample programs, and simply change the button style.
- 2023-07-16 05:40:03下载
- 积分:1
-
duilib 不错的开源界面库能方便做出360效果的界面
duilib 不错的开源界面库能方便做出360效果的界面
- 2022-01-25 20:23:34下载
- 积分:1
-
c++builder的经典书籍,非常不错,主要讲界面开发的
c++builder的经典书籍,非常不错,主要讲界面开发的-c++ builder of classic books, very good, the main speaker interface developed
- 2022-03-10 07:43:34下载
- 积分:1
-
控制,MFC的例子,包含了大量的源代码,包括:cdirtreectrl…
控件,MFC示例,包含很多源代码,包括:CDirTreeCtrlu demo-host tree progressu inu status s2u demo-schedule model StatusBar列出进度和集成示例win32c controls-摘要列表向导抽象步骤设置标准树页标准属性示例文件结构树列表数字和简单集成Ftp一个简单的编程范例编程范例Ftp两个简单浏览器示例摘要视图两个简单数据库示例
- 2022-10-13 17:30:03下载
- 积分:1