-
很经典的VC皮肤设计工具,可以通过它做出很漂亮的截面程序,希望大家的程序界面都是很漂亮的。共享之!...
很经典的VC皮肤设计工具,可以通过它做出很漂亮的截面程序,希望大家的程序界面都是很漂亮的。共享之!-classic VC skin design tool, it can make a very nice cross-section procedures, we hope that the programming interfaces are very beautiful. Sharing!
- 2022-12-14 13:30: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
-
车间运行管理系统
车间运行管理系统,采用C#语言开发,在VS2005平台下调试通过,实现了日常数字化车间的运行管理,包括车间设备的管理、车间人员的管理、设备检修等基础信息的录入、查询和修改等,适合学习,欢迎下载。
- 2022-11-23 19:00:03下载
- 积分:1
-
GetModelName
资源描述得到模块名称,toshba 电脑上,得到模块名称,toshba 电脑上,得到模块名称,toshba 电脑上,得到模块名称,toshba 电脑上,
- 2022-12-22 20:10:03下载
- 积分:1
-
Japan
日本的著名的开源的图形用户界面 widestudio的手册-Japan
- 2022-04-06 18:59:21下载
- 积分:1
-
vc常用操作的讲解,对常见操作进行了较好的说明,是初学者很好的帮助材料,推荐下载。...
vc常用操作的讲解,对常见操作进行了较好的说明,是初学者很好的帮助材料,推荐下载。-vc used to explain the operation of the common operation for a better note is a great help beginners materials, recommended download.
- 2022-11-08 12:35:03下载
- 积分:1
-
显示进度条的小程序。菜单中共有4个选项,分别显示出长条形,渐进形,以及这两种进度条分别带有进度数字显示的样子。...
显示进度条的小程序。菜单中共有4个选项,分别显示出长条形,渐进形,以及这两种进度条分别带有进度数字显示的样子。-show the progress of the small program. Menu options for a total of four, showed long rectangular, progressive form, and both progress with the progress of the respective figures show appearance.
- 2022-03-21 22:06:30下载
- 积分:1
-
一个比较漂亮的按钮控件类,没有用到图片,所以效率比较高...
一个比较漂亮的按钮控件类,没有用到图片,所以效率比较高-A more beautiful button-type controls, did not use pictures, so more efficient
- 2022-06-17 03:06:15下载
- 积分:1
-
实现两个窗体的自动停靠,类似于winamp播放器的停靠效果。
实现两个窗体的自动停靠,类似于winamp播放器的停靠效果。-Realize the two forms of automatic docking, similar to winamp player docking effect.
- 2022-03-20 15:53:09下载
- 积分:1
-
The Effective Software Development Series provides expert advice on all aspects...
The Effective Software Development Series provides expert advice on all aspects of modern software development. Books in the series are well written, technically sound, of lasting value, and tractable length. Each describes the critical things the experts almost always do―or almost always avoid doing―to produce outstanding software.-The Effective Software Development Series provides expert advice on all aspects of modern software development. Books in the series are well written, technically sound, of lasting value, and tractable length. Each describes the critical things the experts almost always do―or almost always avoid doing―to produce outstanding software.
- 2022-11-16 08:10:03下载
- 积分:1