自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

红泥屋

许阳的博客

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

原创 关于VSTO中ReleaseComObject的问题

ReleaseComObject是托管代码中用来通知COM组件销毁COM对象释放内存的显式方法。在.NET程序中引用的COM对象在一般情况下在程序结束时会由GC回收并销毁。而ReleaseComObject可以在程序中通知GC处理销毁COM对象的工作。以我的愚见在一般在VSTO程序中没有必要使用这个方法,当然当你的目标机器内存资源相对紧张的时候你就要考虑使用这个方法了。

2012-04-26 15:55:40 649

原创 免费的Html转rtf方法

Dim reportWebBrowser As New WebBrowser reportWebBrowser.CreateControl() reportWebBrowser.DocumentText = sbHTMLDoc.ToString While reportWebBrowser.DocumentText <> sbHTMLDoc.ToString

2012-04-24 14:48:48 2009

原创 VBA 解析Color的RGB值

在VBA中颜色是以OleColor的形式存在的,如果想要RGB的值需要经过一定的装换。代码如下:Sub ColorAlert(Color As Variant) Dim R%, G%, B% R = Color Mod 256 G = Color \ 256 Mod 256 B = Color \ 256 \ 256 Mod 256

2012-04-24 13:16:47 7512 1

原创 VBA 读写ini文件

在VBA中必须通过调用Win32 API来实现Ini文件读写。Option Explicit 'read Private Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" _ (ByVal lpApplicationNam

2012-04-23 11:12:27 4291

原创 WdWordDialog.wdDialogContentControlProperties 使用

Dialog newDialog = wordApplication.Dialogs[WdWordDialog.wdDialogContentControlProperties]; newDialog.Show(); 如果没有ContentControl被选中,上面代码会报错。

2012-04-16 13:10:45 662

原创 使用OpenXml为Excel表格添加合计行

添加前表格:运行后结果:实现代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;using DocumentFormat.OpenXml.Packaging

2012-04-13 13:10:42 2094

原创 Excel的地址解析

在Open Xml中Excel单元格的位置时在CellReference中确定的其格式为[字母][数字]。其总字母标示列的位置,数字表示行的位置。在实际操作过程中我们最初取得的都是数字的行列号。所以必须知道如何在数字的行列号与CellReference格式的行列号之间是如何转化的。这个例子通过正则表达式来完成这个转化。using System;using System.Collectio

2012-04-11 10:45:17 975

原创 在幻灯片放映过程中动态插入内容

以下示例用来展示在放映幻灯片的过程中动态插入内容。Public Class ThisAddIn Private WithEvents PPApp As PowerPoint.Application Private Sub ThisAddIn_Startup() Handles Me.Startup PPApp = Application End Sub

2012-04-11 10:32:35 1107

密码生成器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关注的人

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