-
使用WORD作为VB的报表工具
使用WORD作为VB的报表工具-use Word as VB reporting tools
- 2022-06-16 04:48:48下载
- 积分:1
-
这个源码包含一个复杂的计算器,这个计算器可以是一个很好的M。
这里包含一款精密计算器源码,这款计算器可以实现好多功能,运行环境VC++。-This source contains a sophisticated calculator, this calculator can be a good multi-function, operating environment VC++.
- 2022-11-10 20:00: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
-
MFC实现的八数码问题,采用的是A星算法,欢迎多多指教!
MFC实现的八数码问题,采用的是A星算法,欢迎多多指教!-Eight Box Game Using MFC
- 2023-06-01 16:00:03下载
- 积分:1
-
1 How to use this software, first of all in the Please enter the function y =...
如何使用本软件
1、首先在“请输入函数 y=”后面的输入框中输入您想要画图的函数形式,注意,其中乘除幂运算符必须在前面加点,否则会出错画不出来。
2、在“请输入区间 x 从”…“到”…的输入框中输入您想要画图的区间,也就是自变量的取值范围。
3、点击“画图”按钮,即可画出函数的图形。
4、点击“关闭”按钮,可以退出本软件。-1 How to use this software, first of all in the Please enter the function y = behind the input box, enter the function you want to draw the form of attention, in which multiplication and division operator must power points in front, otherwise they will not come out wrong painting. 2, in the Please enter the range of x from the ... to ... the input box, enter the interval you want to draw, that is, since the variables range. 3, click on the Paint button, you can draw function graphics. 4, click Close button, you can withdraw from this software.
- 2023-07-17 04:35:03下载
- 积分:1
-
高仿爱奇艺的安卓端界面
非常适合安卓初学者,纯界面。有首页、分类、搜索、我的资料、更多等界面,仿奇艺全套UI,学习界面布局设计素材。
- 2022-01-22 11:03:02下载
- 积分:1
-
学习gdi+的好程序,非常适合初学者学习使用
学习gdi+的好程序,非常适合初学者学习使用-Learning gdi+ A good process, very suitable for beginners learning to use
- 2022-07-25 04:37:06下载
- 积分:1
-
j2me实习一般的游戏小框架,对初学者十分有用,这个框架包含了一般的界面实现。如有不良Email:jamz64@sohu.com...
j2me实习一般的游戏小框架,对初学者十分有用,这个框架包含了一般的界面实现。如有不良Email:jamz64@sohu.com-j2me practises the common game small frame, is extremely useful
to the beginner, this frame has contained the general contact surface
realization. If has not good Email:jamz64@sohu.com
- 2022-01-25 19:49:09下载
- 积分:1
-
vb 学生信息管理系统
资源描述用vb开发的学生信息管理系统,包含数据库、说明文档等,获得总评第一。
- 2022-01-21 02:21:03下载
- 积分:1
-
在Visual C++ 环境下,控制节目显示如何不闪烁。对于带有图像显示的界面控制尤其重要。通过Memory DC的方式实现。易于使用...
在Visual C++ 环境下,控制节目显示如何不闪烁。对于带有图像显示的界面控制尤其重要。通过Memory DC的方式实现。易于使用-in Visual C environment, the control program shows how not blinked. For images with the interface control is especially important. Memory DC through in a way. Easy to use
- 2023-09-05 18:20:04下载
- 积分:1