-
组件应用实例delphi源码,很适合初学者!
组件应用实例delphi源码,很适合初学者!-Component Application delphi source is well-suited to beginners!
- 2022-03-17 14:22:30下载
- 积分:1
-
consolelinedit.cpp,编写光标移动
consolelinedit用来编写光标移动的,c++ code,提供大家参考
- 2022-04-15 20:33:22下载
- 积分:1
-
可重复使用的WNDCTRL类 这个类基本上容纳了一些隐藏的控件和窗口。一个 WndCtrl对象有两个状态, 即开和关。你必须把这个控件加到m_WndCtrl中。
可重复使用的WNDCTRL类 这个类基本上容纳了一些隐藏的控件和窗口。一个 WndCtrl对象有两个状态, 即开和关。你必须把这个控件加到m_WndCtrl中。当WndCtrl被打开的时候,控件被创建,当WndCtrl被关闭的时候,控件被隐藏或撤销。WndCtrl将会是所有加到它上面的控件的父节点。WndCtrl可以在关闭或开着的状态下改变大小或重新定位。然而,关闭状态下的大小是静态的,不能被改变。无论大小是否被改变,都将会影响WndCtrl开着的状态- Might duplicate a WNDCTRL kind of this kind which used
basically holds some hideaways to control and the window. A WndCtrl
object has two conditions, namely opens with the pass. You must
control this to add to in m_WndCtrl. When WndCtrl is opened, controls
to found, when WndCtrl is closed, controls to hide or to abolish.
WndCtrl could be all adds to above it to control the father pitch
point. WndCtrl may the condition change the size under the closure
either is opening or relocate. However, under the off-position size is
the static state, cannot change. Regardless of size whether is
changed, all will be able to affect WndCtrl will be opening the
condition
- 2022-04-23 17:35:58下载
- 积分:1
-
能够应用文件打开的数据 进行处理 调用画图函数 在窗口显示出来...
能够应用文件打开的数据 进行处理 调用画图函数 在窗口显示出来-application to open the document the data processing function called drawing displayed in the window
- 2022-03-20 10:14:09下载
- 积分:1
-
骰子简单的GUI游戏
这是一个简单的项目,适合初学者谁想要学习如何使用赢得了申请表格,
- 2023-02-08 08:00:04下载
- 积分:1
-
load resources from the skin
从资源中加载皮肤――使用免费界面库 AppFace For VC 0.2 美化您的软件。-load resources from the skin-- use free interface library AppFace For VC 0.2 beautify your software.
- 2022-01-25 23:00:48下载
- 积分:1
-
我们经常会使用到组合框,而组合框是是有2种功能的
我们经常会使用到组合框,而组合框是是有2种功能的--下拉和列表。一般情况下,列表框的宽度和选择框是一样宽的,但是我们有些时候确实很需要把列表框的宽度变大,一便让我们能更好的看我们要选的东西。 为了能有这个功能,我写了下面的这个函数。首先得在你的对话框中添加一个的WM_CTLCOLOR的消息句柄,或者使用CComboBox的继承类,而且在其中添加下面的代码:-we often use to mix frame, and frames are combinations are two kinds of functions-- and the drop-down list. Under normal circumstances, the list box and the width of the selection box is the same width, but sometimes we need to do is list the width of the frame, one will enable us to better do our election of the things. To have this function, I wrote the following this function. First of all in your dialog box to add one of the news WM_CTLCOLOR handle, or use the inheritance CComboBox category, but which add the following code :
- 2022-08-02 15:44:40下载
- 积分:1
-
用Apihook实现的打印监控
用Apihook实现的打印监控,C++编写,比较简单,仅供参考,监控打印队列
- 2023-05-25 03:20:03下载
- 积分: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
-
基于MFC的学生管理系统
基于MFC下的学生信息管理系统 对于mfc初学者来说很不错 可以轻松了解mfc的编写以及运行。
- 2023-05-08 07:10:02下载
- 积分:1