-
PixieLib(MFC扩充库)
资源描述MFC扩充库(全部有源程序),想学习的同学赶紧下载,好好加油!
- 2023-06-06 02:50:03下载
- 积分:1
-
msp430的开发资料,共享大家看看:)
msp430的开发资料,共享大家看看:)-MSP430 development of information-sharing to see everyone:)
- 2022-09-28 02:35:04下载
- 积分:1
-
Skin well
著名的Skin皮肤软件的源代码,有了它你可以实现优美的界面,使用很简单-Skin well-known skin software source code, with it you can realize the beautiful interface very simple to use
- 2022-01-26 16:04:49下载
- 积分:1
-
this is about the graphics which used to see the network
this about the graphics which used to see the network-this is about the graphics which used to see the network
- 2022-03-21 16:41:37下载
- 积分:1
-
基于MFC,完全兼容CButton类。实现按钮的自定义图标显示、提示信息、背景自定义、文本自定义、按钮区域根据图形的前景图片显示等等的功能。...
基于MFC,完全兼容CButton类。实现按钮的自定义图标显示、提示信息、背景自定义、文本自定义、按钮区域根据图形的前景图片显示等等的功能。-MFC-based, fully compatible CButton category. Since achieving the button icon definition, a message, from the definition of background, text from the definition graphics buttons region under the prospects for pictures, etc. function.
- 2022-08-23 01:39:03下载
- 积分:1
-
渐入渐出效果,半透明显示窗口。适合初学者看,也适合有一定基础在这界面优化方面遇到问题的朋友。...
渐入渐出效果,半透明显示窗口。适合初学者看,也适合有一定基础在这界面优化方面遇到问题的朋友。-Fade in fade out effects, semi-transparent display window. Suitable for beginners to see, but also suitable for a certain basis in this interface optimization problems friend.
- 2022-01-25 20:28:45下载
- 积分:1
-
隐藏窗口的实例,可以对任意窗口操作,请试一试,里面有SDK的函数...
隐藏窗口的实例,可以对任意窗口操作,请试一试,里面有SDK的函数-window hidden example, can operate on any window, please try, and they SDK functions
- 2022-02-25 14:12:22下载
- 积分:1
-
matlab codes for GUI
这个MATLAB代码显示了使用MATLAB编程方法的图形接口技术学习系统的基本设计的GUI MATLAB代码
- 2022-02-10 16:58:48下载
- 积分:1
-
用VC++编写的下位机与上位机通过RS232通信实现的界面及数据管理系统。...
用VC++编写的下位机与上位机通过RS232通信实现的界面及数据管理系统。-Using VC++ to prepare for the next-bit machine and host computer via RS232 communication interface and implemented data management system.
- 2023-06-16 03:00: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