-
1、上述程序在VB5.0中文版和安装了Microsoft Word97的Windows98中文版环 境下调试通过。 2、实例中模板文件的格式并不局限于此,可以是...
1、上述程序在VB5.0中文版和安装了Microsoft Word97的Windows98中文版环 境下调试通过。 2、实例中模板文件的格式并不局限于此,可以是任意格式的Word文档;书签 的定义也不局限于文本,还包括为引用而命名的位置。 3、实例中,当更新书签内容时,应采取更简便的方法,避免程序的冗余。通 常的做法是:按一定的命名规则定义书签(如b1,b2,b3),将所有的数据信息 存放在数据库中,而数据库字段的命名也采用相应规则(如b1,b2,b3),因此 可以利用循环的方法从数据库中读出数据,同时更新书签内容。 4、第3点说明实际上与数据库发生联系,从而可实现标准文档的批量生成和 连续打印。-one, the above procedures in VB5.0 and installation of the Chinese version of Microsoft Word 97 Chinese version of the Windows 98 environment through debugging. 2, examples template file format is not limited to this, it can be in any format, Word documents; Bookmark not confined to the definition of the text, but also as a reference to the location and name. 3, example, when the content is updated bookmarks, should take a more easy ways to avoid redundant procedures. The usual practice is : according to certain rules of naming bookmarks definition (b1, b2, b3), all the data stored in the database and the database fields are named accordingly adopted rules (such as b1, b2, b3), it can use
- 2022-11-30 05:15:03下载
- 积分:1
-
界面部分 GDI+的使用 图片显示 和wmp的ocx的使用
界面部分 GDI+的使用 图片显示 和wmp的ocx的使用-Interface part GDI+ The use of picture display and the ocx use wmp
- 2022-01-30 10:10:47下载
- 积分:1
-
java写的广本编辑器
java写的广本编辑器-wrote the editor-
- 2022-08-23 11:37:31下载
- 积分:1
-
锁禁用X按钮,鼠标,Ctrl+Alt+Del,ALT标签,隐藏任务栏桌面…
lock windows Disable X button,Mouse , Ctrl Alt Del,Alt Tab , hide TaskBar Desktop , Reboot, LogOff , Shutdown and set priority of your form
- 2023-08-29 15:20:03下载
- 积分:1
-
这是一个滚动横幅设计
这是一个滚动横幅设计-This is a rolling banner design
- 2023-07-25 00:15:03下载
- 积分:1
-
Written by a foreigner transparent menu is drawn from the. Very nice interface a...
一个老外写的透明菜单,是自绘的。非常好看的界面和效果。做VC界面开发的人可以看看。-Written by a foreigner transparent menu is drawn from the. Very nice interface and effects. VC interface so people can look at the development.
- 2022-02-06 05:56:43下载
- 积分:1
-
qt code has been compiled using mingw, qt a good school learning materials
qt 代码,已经用mingw编译好,不错的学qt学习资料-qt code has been compiled using mingw, qt a good school learning materials
- 2022-05-27 00:31:18下载
- 积分:1
-
HTML5开发的OA系统界面WINDOWS8风格
HTML5开发的OA系统界面,适合做OA开发界面,WINDOWS8风格
- 2022-03-18 03:02:45下载
- 积分: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
-
安卓基本用户界面
应用背景安卓基本用户界面测试例子:一些图形控件,声音,列表控件关键技术测试程序:Java Android NDK,框架,图像,列表控件的控制,
- 2022-02-21 18:26:21下载
- 积分:1