-
使用c#的类库进行引用,以及在继承的窗体中派生新的窗体,并进行文件的二进制 读写...
使用c#的类库进行引用,以及在继承的窗体中派生新的窗体,并进行文件的二进制 读写-use of the library for references, and the succession of forms derived new forms, and read and write a binary file! !
- 2022-01-25 19:23:32下载
- 积分:1
-
backpropagation
这是模拟神经网络的反向传播方法
- 2022-03-01 10:38:14下载
- 积分:1
-
实现windows程序窗体透明效果
实现windows程序窗体透明效果-To achieve transparency in the form ...
- 2022-03-03 21:07:08下载
- 积分:1
-
C# database link to excess
大家好;
- 2022-05-27 12:12:20下载
- 积分:1
-
This application not only demonstrates the basics of using the Microsoft Foundat
This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your ShortCut application.
- 2022-01-22 05:41:49下载
- 积分: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
-
its not yet done.. we re still working on the next module of this system which i...
its not yet done.. we re still working on the next module of this system which is the main or the heart of the system hope you understand.. we re still a student by the way-its not yet done.. we re still working on the next module of this system which is the main or the heart of the system hope you understand.. we re still a student by the way..
- 2022-06-12 14:09:31下载
- 积分:1
-
C# 开发拓扑图绘制软件NetronLight
资源描述Netron提供的开源拓扑图绘制软件的开源代码
- 2023-04-23 21:45:02下载
- 积分:1
-
一个允许分组和排列数据项的网格,很像Outlook。
该文件包括:1、文章中的示例项目;
2、OutlookGrid控件源代码;
3、Outloo...
一个允许分组和排列数据项的网格,很像Outlook。
该文件包括:1、文章中的示例项目;
2、OutlookGrid控件源代码;
3、OutlookGrid控件。-a permit and with a data item in the grid, much like Outlook. The documents include : 1. Article, examples of projects; 2, OutlookGrid controls source code; 3. OutlookGrid control.
- 2022-02-20 18:26:03下载
- 积分:1
-
MFC入门计算器
MFC入门计算器,程序比较简单,但是对于刚刚学习C的MFC编程人员,可以很快的上手,可以在看懂的基础上尝试编程
- 2022-12-07 08:10:04下载
- 积分:1