-
several commonly used keys control procedures c version
几个常用的控键程序 c版本-several commonly used keys control procedures c version
- 2022-01-27 13:14:52下载
- 积分:1
-
vc examples (of the island would like to have every member of every day a happy...
vc例子 (愿岛上的每个成员都能天天快乐,每天都比昨天有所进步 )-vc examples (of the island would like to have every member of every day a happy day than yesterday some progress)
- 2022-10-31 01:50:03下载
- 积分:1
-
CxImage is a C++ class to load, save, display, transform BMP, JPEG, GIF, PNG, TI...
CxImage is a C++ class to load, save, display, transform BMP, JPEG, GIF, PNG, TIFF, MNG, ICO, PCX, TGA, WMF, WBMP, JBG, J2K images.
- 2023-01-17 15:35:03下载
- 积分:1
-
开关编程源代码,100%在VC下调试通过
开关编程源代码,100%在VC下调试通过-switch programming source code, 100% of the VC through debugging
- 2022-03-18 17:02:09下载
- 积分:1
-
漂亮的工具栏和菜单渲染器
漂亮的工具栏和菜单渲染器,WinForm程序,使用渲染器重绘了菜单栏和工具栏,很漂亮的效果,有简单的例子代码,可直接运行
- 2022-04-18 17:38:10下载
- 积分:1
-
电子相册,用java写的电子相册,希望对大家有用,我试了下,是可用的...
电子相册,用java写的电子相册,希望对大家有用,我试了下,是可用的-Electronic album, using java to write the electronic album, hope for all of us, I would try the next, is available
- 2022-10-09 18:15:03下载
- 积分:1
-
close the dialog, the dialog box to gradually disappear transparent manner
关闭对话框时,对话框以逐渐透明的方式消失-close the dialog, the dialog box to gradually disappear transparent manner
- 2022-08-05 16:37:12下载
- 积分: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
-
CTabctr控件的使用
CTabctr控件的使用-control the use CTabctr
- 2022-02-20 07:44:12下载
- 积分:1
-
Form shock effect, will not care where you jump, a very interesting small progra...
该程序实现窗体震动的效果,不小心会下你一跳,很有趣的小程序.-Form shock effect, will not care where you jump, a very interesting small programs.
- 2023-07-02 18:15:03下载
- 积分:1