-
在Window标题栏写title的两种方法的VC原代码
在Window标题栏写title的两种方法的VC原代码- Writes title in the Window title block two methods VC original
codes
- 2023-07-05 06:10:03下载
- 积分:1
-
can enlarge the mouse position referred to the content, zooming ratio can be adj...
可以放大鼠标所指位置的内容,放大比例可以调节.-can enlarge the mouse position referred to the content, zooming ratio can be adjusted.
- 2022-01-29 00:06:08下载
- 积分:1
-
vc access drives with serial numbers
用vc获取硬盘序列号-vc access drives with serial numbers
- 2022-04-24 17:52:06下载
- 积分:1
-
一个JAVA做的音频播放器,能够播放MID格式的音频文件,能够控制音乐的流量和声音的大小...
一个JAVA做的音频播放器,能够播放MID格式的音频文件,能够控制音乐的流量和声音的大小- JAVA does the audio frequency player, can broadcast the MID
form the audio frequency document, can control the music the current
capacity and the sound size
- 2022-03-10 23:17:29下载
- 积分:1
-
一个VB写的,无标题窗体移动,贴边窗体的测试例子,没什么技术含量,只是测试一下...
一个VB写的,无标题窗体移动,贴边窗体的测试例子,没什么技术含量,只是测试一下-write a VB with no title Form Mobile affixed to the side window test case, no technical content, only a test
- 2022-01-26 02:23:26下载
- 积分:1
-
qt实现T9输入法
zmainwin.h,zmainwin.cpp分别是中文输入主窗口的头文件和源文件,生成主界面。zpinyinwin.h,zpinyinwin.cpp是拼音输入界面。py_mb.h是拼音输入法汉字排列表,而t9py.h是T9数字字母的索引表。开发环境 QtEmbedded-arm-4.5.3,开发板s3c2440,实现中文输入。现在虚拟机环境下交叉编译生成可以在开发板上运行的可执行文件,然后烧到开发板,运行就可以了。
- 2023-03-18 05:35:04下载
- 积分:1
-
不错的电子书啊 是关于oracle的 大的按订单地方地方发发飞的飞的 案发...
不错的电子书啊 是关于oracle的 大的按订单地方地方发发飞的飞的 案发 -Ah good e-book is about the oracle of the great local places to order fat fat fly flying incident
- 2022-04-06 18:01:16下载
- 积分:1
-
在安装程序中,向导是必不可少的。你有没有对现在那些通用的界面感到平淡?看看这个Wizard 97 Property Sheets 的例子吧,你会满意的。...
在安装程序中,向导是必不可少的。你有没有对现在那些通用的界面感到平淡?看看这个Wizard 97 Property Sheets 的例子吧,你会满意的。
-During the installation process, the guide is indispensable. Now you have no common interface which is flat? Look at the Wizard 97 Property Sheets an example, you will satisfied.
- 2022-12-06 08:05: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
-
电信业务话单排序的界面设计部分,希望大家多多指教!
电信业务话单排序的界面设计部分,希望大家多多指教!-telecommunications business to sort the so-interface design, we hope the exhibitions!
- 2022-02-22 06:11:20下载
- 积分:1