文章分类 -  Office Development

outlook 更改 profile
摘要:If your Exchange mailbox or email account doesn't exist any more, or you don't have an Exchange email account at all, or the instructions in 5.1 don't work, then your current mail profile is incorrect, you should delete it and create a new one, as follows:5.2.1 Click Start, and then clic 阅读全文
posted @ 2011-05-26 21:53 blogsweb 阅读(241) 评论(0) 推荐(0)
InfoPath提交后自动保存文件名
摘要:1. 在infoPath表单中,新建2个域。然后选择数据连结,如图: 2. 下一步。 3. 选择fx.选择插入函数。并选择文本—〉contact.如图: 4. 选择域, 5. 对提交建立数据连结如图: 6.最后放到表单文档库中,提交数据后,系统自动生成文件名“AAA-BBB”。 阅读全文
posted @ 2009-03-30 13:52 blogsweb 阅读(450) 评论(0) 推荐(0)
InforPath contact selector
摘要:Using the Contact Selector Control 收藏 Using the Contact Selector Control We have seen a number of requests on how to allow a user to enter (or select) a person’s name or logon alias and then val... 阅读全文
posted @ 2009-03-02 15:41 blogsweb 阅读(219) 评论(0) 推荐(0)
InfoPath 与 数据库的通讯
摘要:InfoPath 与 数据库的通讯 一、在vs中创建表单模板把数据存到数据库中。 新建infopath表单模板: 打开vs2008,新建Project,在Project Types 区中选择 Visual C#àOffice-à2007--àInfoPathFormTemplate ,在Name中填入infopath表单模板的名称,如PurcharForm;如下图: 开始设计表单: 1... 阅读全文
posted @ 2008-12-11 11:59 blogsweb 阅读(164) 评论(0) 推荐(0)
Windows 2003邮件服务器配置指南(图)
摘要:Windows 2003邮件服务器配置指南(图) 2008-01-29 11:57 Windows 2003邮件服务器配置指南(图) ... 阅读全文
posted @ 2008-07-30 14:07 blogsweb 阅读(891) 评论(0) 推荐(0)
Excel读取与创建方法三: MyXLS
摘要:在后台调用excel组件,生成Excel,虽然可以对Excel文件进行完全控制,可以生成任何复杂的格式,但是有个很大的缺点,这种方式会产生很多Excel进程,很难完全清除掉,特别是在出错的时候,可能会使整个服务器崩溃。本文为大家介绍一个C#写的开源组件,并简单说下office2003和以上版本支持的XML格式。 一 操作Excel二进制格式 OpenOffice.org发布过的俩个文档E... 阅读全文
posted @ 2008-04-22 17:31 blogsweb 阅读(4619) 评论(1) 推荐(0)
Excel读取与创建方法二:ADO.NET
摘要:这是微软提供的方法,读取数据比较快。实例1 读取Excel工作薄中的全部数据 读取Excel工作薄1(工作薄名称:Sheet1)中的全部数据,在OleDbDataAdapter对象中的SQL语句应为:"Select 字段列表 From [工作表名$]"。 代码示例: public void ReadExcel(string sExcelFile) { string... 阅读全文
posted @ 2008-04-22 17:25 blogsweb 阅读(325) 评论(0) 推荐(0)
Excel读取与创建方法一:对象模型
摘要:1.取值 Application m_xlsApp=new Application(); object objOpt = System.Reflection.Missing.Value; Workbooks wbs = m_xlsApp.Workbooks; Workbook m_Workbook = null; if (wbs != null && wbs.Count > 0) { ... 阅读全文
posted @ 2008-04-22 17:24 blogsweb 阅读(390) 评论(0) 推荐(0)