我已经成功地在Excel中编写了一些VBA代码,这些代码可以打开现有的Word文档,根据Excel工作表中的信息查找和替换字符串。
因为源数据来自Access数据库,所以我想我应该尝试将VBA代码移动到Access中,并从那里运行它。
更新的代码大部分都可以工作,但奇怪的是,当我在access中运行它时,代码中查找和替换文本字符串的部分不起作用。
Sub CreateFormsPDF()
' Creates Garda Vetting Forms NVB1 in Word and saves as PDF
Dim WordApp As Object
Dim WordDoc As Object
Dim db As Database
Dim rs As Recordset
Dim Records As Integer
Dim IDAnchor As String
Dim ID As String
Dim FilePath As String, SaveAsName As String
FilePath = "N:\"
' Start Word and create an object (late binding)
' Document already exists so reference this
Set WordApp = CreateObject("Word.Application")
Set WordDoc = WordApp.Documents.Open(FilePath & "Form1.docx")
WordApp.Application.Visible = True
' Point to the relevant table in the Current Database
Set db = CurrentDb
Set rs = db.OpenRecordset("qryMailingList", dbOpenDynaset, dbSeeChanges)
Records = rs.RecordCount
' Cycle through all records in MailingList Query
Do Until rs.EOF
' Define IDAnchor
IDAnchor = "$$ID$$"
' Assign current data to variables
ID = rs!StudentID
' Determine the filename
SaveAsName = FilePath & ID & ".pdf"
' Send commands to Word
With WordApp
With WordDoc.Content.Find
.Text = IDAnchor
.Replacement.Text = ID
.Wrap = wdFindContinue
.Execute Replace:=wdReplaceAll
End With
.ActiveDocument.SaveAs2 FileName:=SaveAsName, FileFormat:=17
End With
IDAnchor = ID
rs.MoveNext
Loop
WordApp.Quit savechanges:=wdDoNotSaveChanges
Set WordApp = Nothing
Set WordDoc = Nothing
Set rs = Nothing
Set db = Nothing
MsgBox Records & " Forms Created"
End Sub
代码执行得很好,只有一个例外,那就是Word中的查找和替换元素。
' Send commands to Word
With WordApp
With WordDoc.Content.Find
.Text = IDAnchor
.Replacement.Text = ID
.Wrap = wdFindContinue
.Execute Replace:=wdReplaceAll
End With
.ActiveDocument.SaveAs2 FileName:=SaveAsName, FileFormat:=17
End With
更奇怪的是,我有一个版本的代码通过Excel运行,运行时没有任何问题,并且我已经完全按照原样从该子例程中提取了这段代码。因此,这在Excel中有效,但在Access中无效,但我不知道为什么。
我将非常感谢任何可能的帮助。
非常感谢。
发布于 2017-03-15 16:17:20
实际上,我自己也是这么想的……我还没有在工具下引用Word对象库。
总是简单的东西!
https://stackoverflow.com/questions/42814790
复制相似问题