I purchased Aspose.Word and Aspose.Pdf in March. I just finished my development, but when I deploy my application I get a licensing error. I don't get it when on the development machine. I have included the .lic files with the .exe. It appears to run through the pdf ok, than bomb on the word set license. I am using the following method:
Public Shared Sub SetLicense()
Try
Dim license As Aspose.Pdf.License = New Aspose.Pdf.License()
license.SetLicense("Aspose.Pdf.lic")
Dim license2 As Aspose.Words.License = New Aspose.Words.License()
license2.SetLicense("Aspose.Words.lic")
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub