-
against pb data window of a general query controls, a lot of good pb can reduce...
针对pb数据窗口通用查询的一个控件,不错可以减少很多pb开发人员的工作量。-against pb data window of a general query controls, a lot of good pb can reduce the workload of staff development.
- 2022-04-25 06:59:08下载
- 积分: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
-
achieve the arbitrary division of the window, using the static segmentation appr...
实现窗口的任意分割,使用静态分割的方法切分窗口,是通过使用CSplitterWnd类来完成的-achieve the arbitrary division of the window, using the static segmentation approach segmentation window, through the use of CSplitterWnd class completed
- 2022-09-16 14:40:03下载
- 积分:1
-
powerbuilder 界面程序,很完美的制作,适合作何pb爱好都参考。
powerbuilder 界面程序,很完美的制作,适合作何pb爱好都参考。-powerbuilder Interface Program
- 2022-03-11 11:45:13下载
- 积分:1
-
使用VC编写的不规则按钮,源码简单明了,非常容易阅读。
使用VC编写的不规则按钮,源码简单明了,非常容易阅读。-The preparation of the irregular use of VC button, source code is simple, very easy to read.
- 2022-03-22 23:11:01下载
- 积分:1
-
推荐一款Vista界面模仿窗体的源码示例,界面做的是挺漂亮的,可以在WIN2K下运行...
推荐一款Vista界面模仿窗体的源码示例,界面做的是挺漂亮的,可以在WIN2K下运行-Recommend a Vista interface mimic the form of source code examples, make the interface is pretty and can be run in WIN2K
- 2022-01-28 20:41:52下载
- 积分:1
-
HeadCtrl的细节可以在该源码中找到,例如设计headCtrl的间隔,颜色,排序查找等...
HeadCtrl的细节可以在该源码中找到,例如设计headCtrl的间隔,颜色,排序查找等-HeadCtrl details of the source can be found, for example, the design headCtrl spacing, color, such as search ranking
- 2023-03-10 23:20:03下载
- 积分:1
-
美观的图形界面,采用GDI+和常说的一次画到内存同时显示.圆角处理等...
美观的图形界面,采用GDI+和常说的一次画到内存同时显示.圆角处理等-Attractive graphical interface, using GDI+ And often said that a painting into memory at the same time show. Fillets, such as treatment
- 2022-01-26 02:28:50下载
- 积分:1
-
采色进度条件实现,支持单色、渐变色、以及自定义颜色表。支持百分比文字显示。...
采色进度条件实现,支持单色、渐变色、以及自定义颜色表。支持百分比文字显示。-A Gradient Progress Control Class, Support Solid, Gradient and Self-defined Color Table. With Percentage Text Display.
- 2022-03-18 00:41:26下载
- 积分:1
-
Cool ScrollBar
Cool ScrollBar
- 2022-05-31 21:42:29下载
- 积分:1