hi. i try to Join a Document onto another Document
but i get the next error
BC30451: ‘RunExamples’ is not declared. It may be inaccessible due to its protection level.
here part of code and the files
Dim dataDir As String = RunExamples.GetDataDir_JoiningAndAppending()
if fileUrl1 <> "" then
Dim dstDoc As New Aspose.Words.Document(fileUrl1)
Dim srcDoc As New Aspose.Words.Document(fileUrl0)
srcDoc.FirstSection.PageSetup.SectionStart = SectionStart.NewPage
dstDoc.AppendDocument(srcDoc, ImportFormatMode.KeepSourceFormatting)
dataDir = dataDir + RunExamples.GetOutputFilePath(fileName);
srcDoc.Save(dataDir)
response.write(dataDir)
response.end
End If
file1.zip (62.6 KB)