浅析vc.net中配置OpenOffice的SDK应用开发_.Net教程
推荐:.net编程之如何绑定到ADO.NET数据源本示例演示如何将 Windows Presentation Foundation (WPF) ListBox 控件绑定到 ADO.NET DataSet。 示例 在本示例中,OleDbConnection 对象用于连接到数据源,该数据源是在连接字符串中
在vc.net 2003下利用OpenOffice的SDK开发应用程序,其实很简单,看下面的配置方法。
需求软件:
MS Visual C Net 2003
OpenOffice SDK
OpenOffice.org 2.1.x 或者更高版本
软件下载地址:
OpenOffice SDK 下载地址:http://download.openoffice.org/index.html
OpenOffice.org 2.1.x下载地址: http://download.openoffice.org/index.html
配置操作:
1.安装 OpenOffice.
2.安装l OpenOffice SDK
3.在OpenOffice SDK的安装目录下(<oo_sdk_path>)创建一个名称为inludecpp目录
4.打开命令行程序(CMD)进入 <oo_sdk_path>\\windows\\bin目录,然后执行如下命令:
cppumaker -BUCR -O <oo_sdk_path>\\includecpp <office_programm_dir>\\types.rdb 5 配置VC .net: 5.1. Tools ->Options->Projects->VC Directories -> Include Files Add \\include directory and <oo_sdk_path>\\includecpp
5.2. Tools ->Options->Projects->VC Directories -> Library files Add <oo_sdk_path>\\windows\\lib directory
5.3. Tools ->Options->Projects->VC Directories -> Executable files Add <office_programm_dir>\\program directory (location where you installed the version of the OpenOffice)
5.4 Open the Project Settings
5.4.1 Change Configuration to all All Configurations (the combobox in the left corner of the window)
5.4.2 Add the additional libraries
Properties->Linker->ComandLine in the Additional Options tab the library files isal.lib icppu.lib icppuhelper.lib isal.lib isalhelper.lib ireg.lib irmcxt.lib stlport_vc71.li
分享:解析.net开发绑定到LINQ查询的结果实例本示例演示如何运行 LINQ 查询然后绑定到查询结果。 示例 下面的示例创建两个列表框。第一个列表框包含三个列表项。 在第一个列表框中选择一项会激发下面的事件处理程序。
- asp.net如何得到GRIDVIEW中某行某列值的方法
- .net SMTP发送Email实例(可带附件)
- js实现广告漂浮效果的小例子
- asp.net Repeater 数据绑定的具体实现
- Asp.Net 无刷新文件上传并显示进度条的实现方法及思路
- Asp.net获取客户端IP常见代码存在的伪造IP问题探讨
- VS2010 水晶报表的使用方法
- ASP.NET中操作SQL数据库(连接字符串的配置及获取)
- asp.net页面传值测试实例代码
- DataGridView - DataGridViewCheckBoxCell的使用介绍
- asp.net中javascript的引用(直接引入和间接引入)
- 三层+存储过程实现分页示例代码
- 相关链接:
- 教程说明:
.Net教程-浅析vc.net中配置OpenOffice的SDK应用开发。