-
MutiCombBox For MFC
通过继承重绘CCombBox,实现了颜色、字体、线型选择一体的组合框,可通过控件类型进行选择-Through inheritance to redraw the CComboBox, color, fonts, line styles, choose one of the combo box, select the control type
- 2022-02-06 21:55:01下载
- 积分:1
-
日记本程序,可以实现日记的写作,存储,读取,支持加密
日记本程序,可以实现日记的写作,存储,读取,支持加密-diary of the process, can achieve a diary writing, storage, access, encryption support
- 2022-06-13 02:05:15下载
- 积分:1
-
提供了一个方便检查从键盘输入的消息流,并且实际查看了特殊击键和键组合产生的消息...
提供了一个方便检查从键盘输入的消息流,并且实际查看了特殊击键和键组合产生的消息-provides a convenient input from the keyboard to check the news flow, and actually looked at the special keyboard and bond portfolio of news
- 2022-07-16 22:09:21下载
- 积分:1
-
Primitive yards from thinking in java
本原码来自 thinking in java-Primitive yards from thinking in java
- 2023-02-18 17:00:03下载
- 积分:1
-
CSynEditView a syntax editing category, as long as you simple introduction of th...
CSynEditView一个支持语法编辑的类,你只要简单的将该类引入你的工程,便可轻松的获得如VC++和VB编程环境中的语法编辑能力。-CSynEditView a syntax editing category, as long as you simple introduction of this type of project you can be easily obtained if the VC and VB programming environment syntax editing capabilities.
- 2023-07-14 11:20:04下载
- 积分:1
-
MFC进程之间的单管道传输
资源描述
进程之间的单管道数据传输
操作平台:win10+vs2013 pro
运行结果:
1、字符与宽字符之间的转换
//宽字符转字符
void TcharToChar(const TCHAR * tchar, char * _char)
{
int iLength;
//获取字节长度
iLength = WideCharToMultiByte(CP_ACP, 0, tchar, -1, NULL, 0, NULL, NULL);
//将tchar值赋给_char
WideCharToMultiByte(CP_ACP, 0, tchar, -1, _char, iLength, NULL, NULL);
}
//字符转宽字符
void CharToTchar(const char * _char, TCHAR * tchar)
{
int iLength;
iLength = MultiByteToWideChar(CP_ACP, 0, _char, strlen(_char) + 1, NULL, 0);
MultiByteToWideChar(CP_ACP, 0, _char, strlen(_char) + 1, tchar, iLength);
}
2、创建进程及单管道传输
void CDemoDlg::OnBnClickedButton1()
{
// TODO: 在此添加控件通知处理程序代码
//管道相关
HANDLE hPWrite, hPRea
- 2022-03-06 10:20:16下载
- 积分:1
-
xp 形状的界面
xp 形状的界面-xp shape contact surface
- 2022-01-25 14:11:47下载
- 积分:1
-
一个vc++很好的源码,是GDI++的一个说明, 可以用于LINUX, WINDOWS...
一个vc++很好的源码,是GDI++的一个说明, 可以用于LINUX, WINDOWS-a good source, GDI is the one that can be used for Linux, Windows
- 2023-08-10 18:20:02下载
- 积分:1
-
我是新手,他研究了所有在技能控制,学习技术。
我是新手,一边学习,一边积累的关于trayicon控件所有技巧,希望一起学习,积累!-I greenhorn, he studied and gained control of all of trayicon skills, learning together and accumulation!
- 2022-03-20 16:10:57下载
- 积分:1
-
MFC Extension Library MFC扩展界面库使用Visual C++ 6.0(15KB)
MFC Extension Library MFC扩展界面库使用Visual C++ 6.0(15KB)-MFC Extension Library expansion interface for use with Visual C 6.0 (15KB)
- 2023-03-11 03:55:03下载
- 积分:1