We are customers using the Aspose word product from a few years ago.
We would like to purchase and use aspose.pdf.kit to populate form fields in an existing pdf.
We use a Cincom product called Socrates it's a COM based system and is not .NET.
If we can get the aspose.pdf.kit to work under VB6, I think we could use similar syntax to get it to work under Socrates (since both are COM based).
We use aspose.word like this (using visual basic 6 syntax):
Dim Doc
Set word = CreateObject("Aspose.Word.Word")
Set Doc = word.open("c:\test1.doc")
We tried to use Aspose.pdf.pdf like this:
Dim Pdf1
Dim Pdoc
Set Pdf1 = CreateObject("Aspose.Pdf.Pdf")
Set Pdoc = Pdf1.open("c:\test.pdf")
The open using Aspose.Word.Word works. However, the open using the Aspose.pdf.pdf fails gives the error: Object does not support this property or method. It doesn't appear that Aspose.pdf.pdf has an open method. How do I open an existing pdf file?
Can I open an existing PDF file and populate form fields from visual basic 6?
How do I figure out the syntax and commands?
Thank you,
Dave