自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

红泥屋

许阳的博客

  • 博客(9)
  • 资源 (38)
  • 收藏
  • 关注

原创 C# 在文档光标处插入文字后光标移至被插入文字后

实现环境:Visual Studio 2010, VSTO 4.0, Office 2010.using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.Office.Tools.Ribbon;using Word = Microsoft.Offic

2011-11-30 16:47:20 2794

原创 Outlook 2010 从磁盘读取一个HTML文件作为Email的Body

Sub ReadHTMLToMailBody() Dim objMailItem As Outlook.MailItem Dim objFileSystem As Object Dim objFileInfo As Object Dim objStream As Object Dim strSourceCode As String Set

2011-11-30 14:21:15 2389

原创 Outlook 2010使用VBA将一个MAPIFolder目录下的MailItem移到它的一个子目录下

Sub test() Dim objSession As Outlook.NameSpace Dim objFolder1 As Outlook.MAPIFolder Dim objFolder2 As Outlook.MAPIFolder Dim objItem As Outlook.MailItem Set objSession =

2011-11-29 16:57:13 1686

原创 Outlook 2010遍历会话相关的所用邮件

这个例子使用C#,Visual Studio 2010开发,是基于Outlook 2010的应用。当你选中一个邮件然后在Ribbon上点击按钮后所用与这个会话相关的邮件都会被打开。主要代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using Micro

2011-11-28 16:49:51 1475

原创 如何用OpenXml判断一个Office文档是否用密码加密过

实际上我们是不能用OpenXml SDK去判断一个Office文档是否用密码加密过的。我们可以试着把文档的扩展名改为"zip"然后解压缩它。你会发现解压缩出来的内容与一个正常文档解压缩出来的内容大相径庭。或许这也是我们判断文档是否被加密的最好依据。

2011-11-24 14:45:57 1697

原创 隐藏Visio 2010的Quick Access Toolbar

我的做法是建立一个Visio 2010 add-in 然后用Ribbon Xml来隐藏Quick Access Toolbar(QAT).ThisAddIn.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml.Linq;u

2011-11-23 13:35:10 1233

原创 Outlook 2010 用代码在Outlook explorer中选中一个邮件

这个代码只能在Outlook 2010中使用using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.Office.Tools.Ribbon;using Outlook = Microsoft.Office.Interop.Outlook

2011-11-22 16:36:02 836

原创 OpenXml SDK 2.0 创建Word 2010文档(不带[Compatibility])最简代码

using (WordprocessingDocument objWordDocument = WordprocessingDocument.Create(@"C:\******.docx", WordprocessingDocumentType.Document)) { MainDocumentPart objMainDocumentPar

2011-11-21 16:41:23 1304

原创 OpenXml SDK 2.0 创建Word文档——最简化的版本

using (WordprocessingDocument objWordDocument = WordprocessingDocument.Create(@"C:\********.docx", WordprocessingDocumentType.Document)) { MainDocumentPart objMainDocumentP

2011-11-21 16:30:13 1665 1

密码生成器0.0.001-α

Android3.0以上版本的密码生成器。只是个体验版。功能在不断添加。敬请期待。

2012-01-11

用OpenXml向Word文档尾部添加text content控件

http://blog.csdn.net/tx_officedev/article/details/7108396相关资源

2011-12-28

用OpenXml创建一个带页码的Word文档

http://blog.csdn.net/tx_officedev/article/details/7104835相关资源

2011-12-27

AccessShareCalendar

http://blog.csdn.net/tx_officedev/article/details/7098370相关资源

2011-12-23

Excel中嵌入多个VBE控件并触发事件

http://blog.csdn.net/tx_officedev/article/details/7098184相关资源

2011-12-23

VSTOCreateVBA

http://blog.csdn.net/tx_officedev/article/details/7094950相关资源

2011-12-22

InsertNewSheet

http://blog.csdn.net/tx_officedev/article/details/7085485相关资源

2011-12-19

Excel嵌入OLE控件并触发事件

http://blog.csdn.net/tx_officedev/article/details/7077045相关资源

2011-12-16

最简单的Excel文档(OpenXml Format)

http://blog.csdn.net/tx_officedev/article/details/7075588相关资源

2011-12-15

Outlook的Globalization和RibbonX

http://blog.csdn.net/tx_officedev/article/details/7073770相关资源

2011-12-15

RibbonX动态生成ComboBox,DropDown的Item

http://blog.csdn.net/tx_officedev/article/details/7073652资源

2011-12-15

随机密码生成器

http://blog.csdn.net/tx_officedev/article/details/7057342例程

2011-12-09

Excel拷贝数据、行高、列宽的例程

http://blog.csdn.net/tx_officedev/article/details/7056856例程

2011-12-09

UniversalTime与本地时间转换工具

http://blog.csdn.net/tx_officedev/article/details/7053501例程

2011-12-08

OpenXmlSDK2.0向PowerPoint2010中插入新幻灯片

http://blog.csdn.net/tx_officedev/article/details/7050672的示例工程

2011-12-07

Word Document-Level 应用:在光标处插入文字后光标后移

http://blog.csdn.net/tx_officedev/article/details/7027799 的示例

2011-11-30

Outlook打开会话相关的所有邮件

博文相关资源:http://blog.csdn.net/tx_officedev/article/details/7020156 选中一个邮件后点按钮把所有相关邮件在Inspector窗口中显示出来。

2011-11-28

Masm611的flp(VMWare的软盘映像)

用于MASM编程的学习。这个版本的MASM最为常用。许多书都是以它为工具来介绍汇编的

2011-06-01

PCDOS2000的flp文件(VMWare的软盘映像)

IBM的PCDOS2000用惯了Microsoft的东西,偶尔换换口味也是很不错的。

2011-06-01

arronax_0.7.1.tar.xz

arronax 是ubuntu下一款优秀的desktop文件编辑器

2019-09-28

Ubuntu下Desktop文件编辑器arronax

Ubuntu系统下好用的Desktop文件编辑器,比gnome-desktop-item-edit好用多了!

2016-12-13

向Excel文件添加RibbonXml

http://blog.csdn.net/tx_officedev/article/details/7894677相关资源

2012-08-22

向ExcelChart添加数据

http://blog.csdn.net/tx_officedev/article/details/7864219 相关资源

2012-08-14

InsertTextToCurrentSlide

http://blog.csdn.net/tx_officedev/article/details/7690787 相关资源

2012-06-25

Openxml 修改Excel指定单元格

Openxml 修改Excel指定单元格,http://blog.csdn.net/tx_officedev/article/details/7598171相关资源

2012-05-24

Outlook2007 ContextMenu

Outlook2007相关资源

2012-04-19

EmbedYouTubeVideo

http://blog.csdn.net/tx_officedev/article/details/7449951相关资源

2012-04-11

SlideShowNextSlideEvent

http://blog.csdn.net/tx_officedev/article/details/7448493相关资源

2012-04-11

Excel行列号转化

http://blog.csdn.net/tx_officedev/article/details/7448518 相关资源

2012-04-11

AddInConfiguration

http://blog.csdn.net/tx_officedev/article/details/7394768 相关资源

2012-03-26

Managed UDF

http://blog.csdn.net/tx_officedev/article/details/7333018相关资源

2012-03-08

Outlook Windows Forum Automation

http://blog.csdn.net/tx_officedev/article/details/7324204 相关资源。

2012-03-06

一个Excel的非模窗口

http://blog.csdn.net/tx_officedev/article/details/7312276 相关资源

2012-03-02

Open Shared Calendars

http://blog.csdn.net/tx_officedev/article/details/7289432示例代码

2012-02-24

PictureDispConverter

一个微软官方的很好用的类.用于把Resouse中的图像装换成stdole.IPictureDisp

2012-02-22

用VSTO向Word文档中添加数学公式

http://blog.csdn.net/tx_officedev/article/details/7245097 相关资源

2012-02-09

Excel97-2003QueryData

http://blog.csdn.net/tx_officedev/article/details/7226538资源

2012-02-01

OpenXmlAddDelTableCollumn

http://blog.csdn.net/tx_officedev/article/details/7226396 相关资源

2012-02-01

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除