-
一套很酷的控件,其中有酷菜单控件,窗体控件,标签文本控件,支持透明通道的图片控件等,还有带图标的文件列表控件等!...
一套很酷的控件,其中有酷菜单控件,窗体控件,标签文本控件,支持透明通道的图片控件等,还有带图标的文件列表控件等!-A cool control, including cool menu controls, form controls, label text control, support for transparent access of picture controls, as well as a list of files with icons and other controls!
- 2022-02-15 19:36:36下载
- 积分:1
-
银行存储系统的实现,我是用vfp编写的,包含开户,提款,存款,销户....
银行存储系统的实现,我是用vfp编写的,包含开户,提款,存款,销户.-banks storage systems realized, I was prepared Probe, including the opening of accounts, withdrawals, deposits, sales households.
- 2022-02-11 22:42:33下载
- 积分:1
-
使用Flash界面,C++程序
Flash4UI 可以让普通的C++应用程序使用flash作为UI,从而使UI开发变的极其轻松。
通过flash的超炫效果,可以使软件提升几个档次。使用Flash制作UI可以一劳永逸,摇身一变可以成为网页应用符合大势所趋,也可以在linux,Mac等PC平台,也可以在很多手机平台上使用。做到可以看Flash的地方就可以用Flash UI。
多年来UI开发一直是程序开发者相当头疼的部分,烦扰复杂的消息传递,凌乱琐碎的图片更换......
Flash4UI给C++应用程序的UI开发带来了革命性的转变,让我们一起翻开这一页历史新篇章......
Flash4UI典型应用:桌面程序界面库,网络flash收集器,桌面宠物等等。-Use Flash as UI in C++ programme
- 2022-02-04 08:38:47下载
- 积分:1
-
可以隐藏多行多列的窗口
可以隐藏多行多列的窗口-hide out more multi-window
- 2022-01-30 23:14:46下载
- 积分:1
-
XP风格工具栏,漂亮的界面设计,可以编译运行
XP风格工具栏,漂亮的界面设计,可以编译运行-XP STYLE TOOL BAR
- 2022-07-18 01:01:13下载
- 积分:1
-
Schools Games management system, including the Notes interface is so friendly
校际运动会管理系统, 含注释,界面做的很友好-Schools Games management system, including the Notes interface is so friendly
- 2022-10-19 22:20:04下载
- 积分:1
-
条形码 实现扫描
主要使用DELPHI编程,界面设计,好的设计
- 2023-01-05 12:50:03下载
- 积分:1
-
HeadCtrl的细节可以在该源码中找到,例如设计headCtrl的间隔,颜色,排序查找等...
HeadCtrl的细节可以在该源码中找到,例如设计headCtrl的间隔,颜色,排序查找等-HeadCtrl details of the source can be found, for example, the design headCtrl spacing, color, such as search ranking
- 2023-03-10 23:20:03下载
- 积分:1
-
MFC learning the most basic and most comprehensive source code examples, includi...
一个学习MFC最基本也最全面的源代码实例,包含了基于C/S架构的socket网络编程,也包含了database,初学者必看-MFC learning the most basic and most comprehensive source code examples, including based on the C/S structure of the socket network programming, but also includes a database, for beginners a must-see
- 2022-06-16 06:07:23下载
- 积分: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