-
一个控制VC网格的程序
一个控制VC网格的程序- Controls the VC grid the procedure
- 2023-03-06 16:50:04下载
- 积分:1
-
vc实现粘贴板功能,msdn例程,implement cliptext
vc实现粘贴板功能,msdn例程,implement cliptext-vc achieve paste board functions, flowing routines, implement cliptext
- 2022-01-21 20:12:58下载
- 积分:1
-
java编写的简单的DES算法的加密程序
java编写的简单的DES算法的加密程序...
java编写的简单的DES算法的加密程序
java编写的简单的DES算法的加密程序-prepared by the simple DES encryption algorithm java procedures prepared by the simple DES algorithm encryption
- 2022-01-25 15:58:44下载
- 积分:1
-
ModelessDialog
Definition dialog box template and declare dialog box modal dialog box class need only declare a cdialog derived class object and call Domadal function can be
- 2022-02-14 05:31:17下载
- 积分:1
-
皮球滚动,可看见其运动轨迹对学习vc的动画有帮助
皮球滚动,可看见其运动轨迹对学习vc的动画有帮助-the ball rolling, you can see their trajectories of learning vc help of animation
- 2022-10-12 18:30: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
-
VISUAL C++ .NET 做的黑白棋源码。
开发平台visual stode .net2005
VISUAL C++ .NET 做的黑白棋源码。
开发平台visual stode .net2005
- 2022-03-12 12:04:36下载
- 积分:1
-
三点画圆的程序,展示VB中Line和Shape控件的使用例子,随意点击窗体三下可以画出一个圆,右键菜单可以显示/隐藏线条等...
三点画圆的程序,展示VB中Line和Shape控件的使用例子,随意点击窗体三下可以画出一个圆,右键菜单可以显示/隐藏线条等-Draw Circle By Three Point Program, the example shows the useage of Line and Shape controls in VB , click the Form 3 times may be arbitrarily draw a circle, right-click menu can show/hide the lines, etc.
- 2022-02-06 15:40:14下载
- 积分:1
-
vb开发的程序,可以模拟VC中的切分窗口,可以使自己的程序专业化。...
vb开发的程序,可以模拟VC中的切分窗口,可以使自己的程序专业化。-vb the program can simulate the VC splitting window, can make its specialized procedures.
- 2022-06-27 11:14:53下载
- 积分:1
-
演示了VC++中使用网页窗口美化程序,加载并显示内存中的内容到网页...
演示了VC++中使用网页窗口美化程序,加载并显示内存中的内容到网页-VC++ to demonstrate the use of landscaping program page window, to load and display the contents of memory to the page
- 2022-05-19 04:36:47下载
- 积分:1