-
用于Winamp2.0插件的光谱分析器源代码,供大家交流
用于Winamp2.0插件的光谱分析器源代码,供大家交流-Spectral Analysis for Winamp2.0 browser plug-ins source code for U.S. exchange
- 2022-07-24 10:21:41下载
- 积分:1
-
WPF拖拽动画
程序实现拖动表格向下滑动,不现实滚动条,可用在触摸屏的界面拖动特效
- 2022-08-04 09:52:43下载
- 积分:1
-
自己创建属性更加丰富的文本框。可以改变颜色,字体。
自己创建属性更加丰富的文本框。可以改变颜色,字体。-own attributes to create more rich text box. Can change colors, fonts.
- 2023-05-19 11:10:03下载
- 积分:1
-
一个完整的图书管理系统,功能强大完整,利用C++和数据库的连接形成管理系统,完美的源代码...
一个完整的图书管理系统,功能强大完整,利用C++和数据库的连接形成管理系统,完美的源代码-a complete library management system, powerful integrity, the use of C and the database management system of connected, the perfect source code! !
- 2022-03-06 08:01:58下载
- 积分:1
-
只有用了Rxlib2.75中的两个控件,一个是用来做TrayIcon的(TRxTrayIcon),还有一个是用来选颜色的(TColorComboBox), 大家
只有用了Rxlib2.75中的两个控件,一个是用来做TrayIcon的(TRxTrayIcon),还有一个是用来选颜色的(TColorComboBox), 大家可以到Rxlib专栏中下载这个控件- In useful Rxlib2.75 two have only controlled, is uses for to
make TrayIcon (TRxTrayIcon), but also some is uses for to choose the
color (TColorComboBox), everybody may arrive in the Rxlib column to
download this to control
- 2023-04-25 08:40:03下载
- 积分:1
-
旋转无线传感器网络,在 NS2 语言上实现的协议
旋转无线传感器网络,在 NS2 语言上实现的协议。源代码是清晰、 容易理解为初学者在 NS2 上工作
- 2023-04-23 02:40:03下载
- 积分:1
-
VC源代码其它vckbproj.zip工程示例程序,方便大家查看!
VC源代码其它vckbproj.zip工程示例程序,方便大家查看!-VC source Other vckbproj.zip engineering sample program to facilitate View!
- 2023-05-28 05:20:03下载
- 积分:1
-
主要功能: 1、xpGrid数据控件:根据数据库数据字典定义自动生成DataGrid,可不用写代码即可实现数据的增删改 2、集成的权限控制功能,权限按字段分配,...
主要功能: 1、xpGrid数据控件:根据数据库数据字典定义自动生成DataGrid,可不用写代码即可实现数据的增删改 2、集成的权限控制功能,权限按字段分配,可精确控制字段的读写属性 3、丰富的数据编辑方式:提供按Form方式编辑和按Grid方式编辑两种方式数据编辑界面,对字段的输入方式提供:普通文本框、复选框、密码框、多行文本、下拉列表、引用其它表等多种输入方式 4、数据重构:动态的修改数据字典,通过对数据字典的修改可动态的控制前台界面的显示及输入 5、代码维护:维护下拉列表编辑模式对应的下拉列表内容 6、权限控制:控制用户及角色的功能权限及字段权限 7、简单的应用系统框架-main functions : 1, xpGrid Data Control : According to the database data dictionary definition DataGrid automatically generated, would not have to write code data can be changed to delete the two, the competence of integrated control functions and powers according to the distribution field, the field of precision control read and write attributes 3, rich data editing : Form provided by the editors and by the way Grid two ways to edit data editing interface to the field to provide input : ordinary text box, check box, the password box, and more lines of text, drop-down list, to use other forms of input, such as Mode 4, data reconstruction : Dynamic the revised data dictionary, data dictionaries can
- 2022-03-25 09:51:12下载
- 积分:1
-
锥束CT投影几何
Tomographic backprojection for cone beam geometry
- 2022-05-14 07:27:23下载
- 积分: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