Hi, I am trying to use the AppendDocument method to add a document to the end of another and IntelliSense in Visual Studio is telling me that AppendDocument is not a member of Aspose.Words.Document.
My code looks something like this:
Dim docMaster as new Aspose.Words.Document
Dim doc As Document = New Document()
docMaster.AppendDocument(doc,ImportFormatMode.KeepSourceFormatting)
At the top of the class, I have the following imports:
Imports Aspose.Words
Imports Aspose.Words.ComHelper
Imports Aspose.Words.Viewer.DocumentRenderer
Am I missing something or is there something else I should be doing? Any help you can give would be most appreciated!
Thanks in advance!
C.