-
一个使用VC设计的非常不错的网格控件,理解了它的设计原理,你就掌握了VC!...
一个使用VC设计的非常不错的网格控件,理解了它的设计原理,你就掌握了VC!-use of a VC designed very good grid control, understanding of its design principle, you mastered the VC!
- 2022-06-17 13:52:08下载
- 积分:1
-
鼠标信息
鼠标信息,对windows系统发送鼠标信息,实现虚拟鼠标的过程。有兴趣的可以参考该代码实现空间鼠标。
- 2022-01-26 06:27:00下载
- 积分:1
-
1) Imitation WINDOWS interface, but no mouse 2) with the whole point timekeeping...
1)仿WINDOWS界面,但无鼠标操作
2)具整点报时功能,几点报几声
3)可设置时间和日期
当然还有一些地方做得不行,比如输入时的光标闪烁,放在这里的目的就是与大家共同学习,欢迎批评指正。
-1) Imitation WINDOWS interface, but no mouse 2) with the whole point timekeeping function, a few reported scornful 3) to set a time and date of course, some places do not, such as the type of cursor flashing on here aim is to learn together with everyone, welcome criticism.
- 2022-02-21 16:43:21下载
- 积分:1
-
只有一个浮动工具条界面的例子
只有一个浮动工具条界面的例子-There is only one floating toolbar interface example
- 2022-09-15 10:35:03下载
- 积分:1
-
可以调整尺寸的对话框例子,在对话框右下角显示一个三角,可以调整控件的尺寸及位置.利用CResizableDialog实现,该类派生自CDialog,是纯MFC的...
可以调整尺寸的对话框例子,在对话框右下角显示一个三角,可以调整控件的尺寸及位置.利用CResizableDialog实现,该类派生自CDialog,是纯MFC的例子-can adjust the size of the dialog example, the lower right hand corner of the dialog box shows a 1.3, can adjust the controls the size and position. Use CResizableDialog realized, derived from CDialog such, are pure examples of MFC
- 2022-07-06 10:48:33下载
- 积分:1
-
可以直接操作系统里面的东西.控制控制面.
可以直接操作系统里面的东西.控制控制面.-can direct things inside the operating system. Control control surfaces.
- 2022-03-06 15:33:10下载
- 积分: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
-
This a transparent example of the menu is actually very beautiful I was examinin...
这是一个透明菜单的 例子 其实很漂亮 我正在研究这个代码 希望 大家能和我一起交流一下 然后彼此沟通沟通 最好是有女朋友和我沟通-This a transparent example of the menu is actually very beautiful I was examining the code and hope that we can join me in sharing what then communicate communication is the best girlfriend and I communicate Oh
- 2022-03-22 10:37:08下载
- 积分:1
-
一个圆再界面上不停的运动。不用修改直接可用。很好的。
一个圆再界面上不停的运动。不用修改直接可用。很好的。-interface constantly in movement. No changes can be used directly. Very good.
- 2022-07-16 05:40:03下载
- 积分:1
-
The examples are given in detail in a single document the procedures to achieve...
本实例给出了详细的在单文档程序中实现多视图的切换。-The examples are given in detail in a single document the procedures to achieve multi-view of the switch.
- 2022-03-24 19:37:08下载
- 积分:1