- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 VB.net 中有一些代码,可以循环遍历文档目录 (.docx) 并更新它们。
代码没有问题,只是如果其中有一个文档被视为“源自 Internet”,则代码会停止,因为 Word 默认情况下会在 protected View 中打开它(可见性故意设置为 false)。
现在,我知道如何更改信任中心设置,但我需要我的应用程序在任何人的计算机上运行,而用户(我的客户)不太可能知道如何执行此操作。
有办法解决这个问题吗?
谢谢。
---编辑---
在最近的示例中,我尝试使用代码打开的文件之一已通过 FTP(由我)从外部添加到目录中。因此,当我的代码循环遍历目录中的所有文档时,代码会在该文件处停止,因为它现在“源自互联网”。
我的问题是,一旦打开文档,代码需要继续并编辑文档,但我的代码无法执行此操作,因为它是在“ protected View ”中打开的。由于单词对象设置为不可见,这会导致代码暂停以供使用输入(通常选择编辑文档),但他们看不到它这样做。
不幸的是,手动更改信任中心设置在这里不是一个选项,因为这些代码正在数百台不同的机器上运行,而这些人不愿意自己更改它 - 他们的看法只是我的代码不起作用,
这是我的代码,它循环遍历目录并将图像插入到文档的标题中。我知道这很草率,但我对此很陌生,每天都在学习。我已用“'****这就是我的问题****”标记了问题发生的位置
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim oWrd As Word.Application
Dim oTok As Word.InlineShape
Dim FSO As New Scripting.FileSystemObject
Dim GUID, PRTY As Scripting.Folder
Dim fl As Scripting.File
Dim sSure As MsgBoxResult
Dim p, a, b, x, y, aa As Integer
Dim bln As Boolean
sSure = MsgBox("Are you Sure?", vbYesNo, "Really?")
If sSure = vbNo Then
Exit Sub
End If
For Each GUID In FSO.GetFolder(TextBox1.Text).SubFolders
For Each PRTY In FSO.GetFolder(GUID.Path).SubFolders
For Each fl In FSO.GetFolder(PRTY.Path).Files
a = a + 1
Next
Next
Next
ToolStripStatusLabel1.Text = "Running..."
oWrd = New Word.Application
oWrd.ScreenUpdating = False
oWrd.Visible = False
ToolStripProgressBar1.Value = 0
For Each GUID In FSO.GetFolder(TextBox1.Text).SubFolders
For Each PRTY In FSO.GetFolder(GUID.Path).SubFolders
For Each fl In FSO.GetFolder(PRTY.Path).Files
x = x + 1
If Not fl.Path Like "*\Land Registry\*" Then
If Not fl.Path Like "*\Billing\*" Then
If Not fl.Path Like "*\Attendance Notes\*" Then
If fl.Name Like "*(LH)*" Then
aa = aa + 1
GoTo c
End If
If FSO.FileExists(Split(fl.Path, ".")(0) & " (LH).dot") Then
aa = aa + 1
GoTo c
End If
y = y + 1
'****THIS IS WHERE MY PROBLEM IS****
oWrd.Documents.Open(fl.Path)
'If MS WORD DECIDES THIS DOCUMENT "ORIGINATED FROM THE INTERNET", THE CODE CANNOT RUN PAST THIS POINT DUE TO THE "PROTECTED VIEW" AND THE USER CAN'T SEE IT.
a:
Try
oWrd.Selection.Find.Text = "Dear "
Catch ex As Exception
p = p + 1
If p = 20 Then
MsgBox("Too Many Rertys")
End If
GoTo a
End Try
bln = oWrd.Selection.Find.Execute
If bln = True Then
If CheckBox4.Checked = True Then
If oWrd.ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = False Then
b:
Try
oWrd.ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = True
Catch ex As Exception
oWrd.ActiveWindow.ActivePane.View.ShowAll = True
oWrd.Selection.HomeKey()
oWrd.Selection.Find.Text = "^b"
bln = oWrd.Selection.Find.Execute
If bln = True Then
oWrd.Selection.Delete()
oWrd.ActiveWindow.ActivePane.View.ShowAll = False
Else
MsgBox("oops")
End If
GoTo b
End Try
End If
Else
If oWrd.ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = True Then
oWrd.ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = False
End If
End If
oWrd.ActiveWindow.View.SeekView = Word.WdSeekView.wdSeekFirstPageHeader
oWrd.Selection.WholeStory()
If oWrd.Selection.InlineShapes.Count > 0 Then
Dim RSLT As VBA.MsgBoxResult
RSLT = MsgBox("HEADER TOKEN DETECTED" & vbNewLine & vbNewLine & "Would you like to continue?", vbYesNo, "WARNING")
If RSLT = MsgBoxResult.No Then
oWrd.Visible = True
Exit Sub
End If
End If
oTok = oWrd.Selection.InlineShapes.AddPicture("http://img.photobucket.com/albums/v353/catfinger/LetterheadToken_zps7f2a4851.png")
oTok.AlternativeText = "replace_Database.OtherTemplate_" & Split(ComboBox1.Text, " ")(0) & ".Content"
If CheckBox2.Checked = True Then
If Not TextBox2.Text = "" Then
If CheckBox3.Checked = True Then
oWrd.Selection.HomeKey()
End If
If CheckBox5.Checked = True Then
oWrd.Selection.EndKey()
End If
For b = 1 To TextBox2.Text
oWrd.Selection.TypeParagraph()
Next
End If
End If
oWrd.ActiveWindow.View.SeekView = Word.WdSeekView.wdSeekMainDocument
If CheckBox8.Checked = True Then
oWrd.ActiveWindow.View.SeekView = Word.WdSeekView.wdSeekFirstPageFooter
Dim footPath As String = IO.Path.GetFullPath(My.Resources.ResourceManager.BaseName)
footPath = footPath.Substring(0, footPath.Length - 39) & "Resources\LetterheadToken.png"
oTok = oWrd.Selection.InlineShapes.AddPicture(footPath)
oTok.AlternativeText = "replace_Database.OtherTemplate_" & ComboBox2.Text & ".Content"
If CheckBox2.Checked = True Then
If Not TextBox3.Text = "" Then
If CheckBox7.Checked = True Then
oWrd.Selection.HomeKey()
End If
If CheckBox6.Checked = True Then
oWrd.Selection.EndKey()
End If
For b = 1 To TextBox2.Text
oWrd.Selection.TypeParagraph()
Next
End If
End If
End If
If CheckBox1.Checked = True Then
oWrd.ActiveDocument.SaveAs2(Split(fl.Path, ".")(0) & " (LH).dot")
Else
oWrd.ActiveDocument.Save()
End If
End If
oWrd.ActiveDocument.Close()
End If
End If
End If
c:
ToolStripStatusLabel1.Text = (x & " of " & a & " (" & y & " updates so far...) / (" & aa & " Skipped)")
ToolStripProgressBar1.Value = (x / a * 100)
Me.Refresh()
Next
Next
Next
ToolStripStatusLabel1.Text = "Finished..."
MsgBox(y & " Letterheads were created out of a possible " & x & ".")
ToolStripStatusLabel1.Text = "Ready..."
End Sub
最佳答案
所以这最终就是我正在寻找的:
要强制将文档置于 protected View 中并从那里进行编辑:
Sub OpenPVThenEdit
ProtectedViewWindows.Open("DOCUMENT PATH HERE")
ProtectedViewWindows(1).Edit
End Sub
------------或-------------
如果您没有打开其他 Word 文档,并且想要检查该文档是否已在 protected View 中打开:
Sub TestForPVw
Documents.Open("DOCUMENT PATH HERE")
If ProtectedViewWindows.Count > 0 Then
ProtectedViewWindows(1).Edit
End If
End Sub
------------或-------------
如果您确实打开了其他 Word 文档并想要检查此特定文档是否已在 protected View 中打开(未经测试):
Sub TestForPVw
Dim dDoc as Document
Set dDoc = Documents.Open("DOCUMENT PATH HERE")
If ProtectedViewWindows.Count > 0 Then
ProtectedViewWindows(dDoc.Name).Edit
End If
End Sub
关于vb.net - 当保护 View 打开时如何使用Word对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26917156/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!