|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
下面的设置文本格式为纯文本设定了 之后好像没有用,请高手指点,还有这个方法之对应了【回复】按钮,请问【全部回复】也想添加的下面代码怎么改- Option Explicit
-
- Private WithEvents mItem As MailItem
- Public WithEvents myExplorer As Explorer
-
- ' #########
- ' 析构函数.
- ' #########
- Private Sub Class_Terminate()
- If Not (mItem Is Nothing) Then
- Set mItem = Nothing
- End If
-
- If Not (myExplorer Is Nothing) Then
- Set myExplorer = Nothing
- End If
- End Sub
-
- ' #############################################################
- ' 事件: 当用户为项目 (父对象的一个实例) 选择 "答复" 动作时发生.
- ' #############################################################
- Private Sub mItem_Reply(ByVal Response As Object, _
- Cancel As Boolean)
- '设置文本格式为纯文本
- <font color="#ff0000"> Response.BodyFormat = OlBodyFormat.olFormatPlain</font>
-
- MsgBox ("ok")
-
- End Sub
-
- ' ##################################################
- ' 事件: 选择其他或更多 Microsoft Outlook 项目时发生.
- ' ##################################################
- Private Sub myExplorer_SelectionChange()
- Dim mySel As Selection
-
- Set mySel = myExplorer.Selection
-
- ' /* 浏览器窗口中有且只有一个项目被选中. */
- If mySel.Count = 1 Then
- Dim objItem As Object
-
- Set objItem = mySel.Item(1)
-
- ' /* 该选中项目是邮件. */
- If objItem.Class = olMail Then
- ' /* 动态注册邮件的 Reply 事件. */
- Set mItem = objItem
- End If
- End If
-
- Set mySel = Nothing
- Set objItem = Nothing
- End Sub
-
- ' #####################################
- ' 强制触发浏览器窗口中的选中项改变事件.
- ' #####################################
- Public Sub ForceSelectionChange()
- Call myExplorer_SelectionChange
- End Sub
复制代码
|
|