在 Visual Studio 中,我创建了对 Aspose 程序集的引用,并在我的代码中使用了 Document 类。它在设计时看起来不错,但是当我去编译时,我收到错误“未定义类型 Aspose.Words.Document”。如果我做任何改变项目文件的事情,比如添加或删除引用或添加新文件,错误就会消失......直到我再次尝试编译。
有没有其他人看到这种奇怪的行为并知道如何解决它?如果重要的话,这是我的代码,但它并没有变得更简单:
Module Module1
Sub Main()
Dim license As New Aspose.Words.License()
license.SetLicense("Aspose.Words.lic")
Dim files = My.Resources.files.Split()
For Each file In files
If file <> "" Then
Dim changed As Boolean = False
Console.Write("Processing " & file & "...")
Dim doc = New Aspose.Words.Document(file)
If doc.Range.FormFields("CurrDate") IsNot Nothing Then
doc.Range.FormFields("CurrDate").TextInputType = Aspose.Words.Fields.TextFormFieldType.RegularText
doc.Range.FormFields("CurrDate").TextInputFormat = ""
doc.Save(file)
Console.WriteLine("done.")
Else
Console.WriteLine("not applicable.")
End If
End If
Next
Console.Read()
End Sub
End Module