-
最基础最重要认真看
最基础最重要认真看-most basic seriously look at the most important
- 2023-04-23 18:50:03下载
- 积分:1
-
VC 透明窗体编程,源代码,可以通过调节显示窗体的透明度实现特殊对话窗口的效果!...
VC 透明窗体编程,源代码,可以通过调节显示窗体的透明度实现特殊对话窗口的效果!-VC transparent forms programming, source code, can be adjusted by the transparency of the form shows the realization of the special effects in the dialogue window!
- 2022-02-06 08:34:18下载
- 积分:1
-
err
对话框用户界面程序的编写,如何向对话框控件关联数据成员及其实现机理,如何利用对话框类的成员函数向控件发送消息和获取对话框控件的类指针,如何直接利用对话框控件类操纵对话框控件(发送消息和直接调用成员函数)。如何在程序运行时产生和销毁控件。对话框控件的几种操作方式的优劣比较分析。如何实现对话框的部分收缩和展开。如何让对话框上的文本框在程序启动后立即获得焦点,如何利用SetWindowLong改变窗口的回调函数,通过改变文本框的默认回车处理方式进行演示。实现多个输入文本框间通过回车逐一向下传递焦点的另一种巧妙方法(用缺省按钮来处理)。-err
- 2023-06-05 00:55:04下载
- 积分:1
-
Div+ CSS layout Guinness other people organize their own similar study notes, a...
《Div+CSS 布局大全》
别人自己整理的类似读书笔记,初学者入门不错~- Div+ CSS layout Guinness other people organize their own similar study notes, a good entry for beginners ~
- 2022-08-05 14:26:41下载
- 积分: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
-
照片自动浏览,用户选择要浏览的文件夹,可以进行图片的自动浏览,有淡入淡出效果。...
照片自动浏览,用户选择要浏览的文件夹,可以进行图片的自动浏览,有淡入淡出效果。-Photo auto-browsing, the user selects to browse the file folders, pictures can be auto-surf, it fades.
- 2022-07-26 18:19:29下载
- 积分:1
-
MFC联网五子棋
资源描述MFC程序,程序运用Socket编程、位图操作、鼠标事件,绘图,对话框和单文档文件结构等等知识,非常适合初学者
- 2022-05-24 01:47:17下载
- 积分:1
-
In the demo project, I create a simple graph with four series of data. It demons...
In the demo project, I create a simple graph with four series of data. It demonstrates different options of marker, such as shapes, colors, etc. When the cursor hits a marker, the background data value will be displayed by tool tip. Some API functions, such as CRgn::PtInRegion(), in HitTest() work best in device coordinates. It may be a good practice to convert the test-point into device coordinates. In the demo, I create one marker for each data series. If you want to use different marker option within one data series, you have to create one marker for each data point.
- 2022-01-20 22:34:40下载
- 积分:1
-
imitation VC interface design produced labels
仿VC界面设计制作标签-imitation VC interface design produced labels
- 2022-01-25 14:54:44下载
- 积分:1
-
一个可以生成汉字点阵的程序,宋体11号汉字,占据位置16*16
一个可以生成汉字点阵的程序,宋体11号汉字,占据位置16*16-a Chinese lattice can be generated procedures, wherein the 11th Chinese characters, occupy positions 16* 16
- 2022-02-25 18:44:28下载
- 积分:1