Please help -
I have a correct path specified to the license as follows -
Dim licenseFile As String = System.Configuration.ConfigurationManager.AppSettings("BinFolderPath") & "Aspose.Total.lic"
If System.IO.File.Exists(licenseFile) Then
'This shows how to license Aspose.Words, if you don’t specify a license,
'Aspose.Words works in evaluation mode.
Dim license As Aspose.Words.License = New Aspose.Words.License
license.SetLicense(licenseFile)
Dim license2 As Aspose.Pdf.License = New Aspose.Pdf.License
license2.SetLicense(licenseFile)
End If
The license is in the Bin folder of this .net 2.0 application. I am creating a doc in word, then saving as PDF. That all works, but I get the license message. Thanks in advance.