Search found 9 matches

by calvin
Thu Apr 15 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Problem with Encryption in VFP
Replies: 1
Views: 5774

Problem with Encryption in VFP

When I run this code in Visual Foxpro 7.0: PDFviewer = CREATEOBJECT("PDFCreactiveX.PDFCreactiveX") PDFviewer.setlicenseKey(mylicname,mylicensenumber) cfile=GETFILE('pdf') pdfviewer.Open(cfile,'') numpages=pdfviewer.pagecount PDFviewer.currentpage = 1 pdfviewer.Encrypt("mypassword"...
by calvin
Wed Apr 07 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: PDFCreater Constants
Replies: 3
Views: 8256

Please to tell me where in the manual it lists the constants? Is there no header file anywhere?
by calvin
Wed Apr 07 2004
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: How to set values for checkboxes
Replies: 3
Views: 5946

Sorry about posting same topic on both forums - the problem is that the names are just too similiar and when I find I have posted on the wrong forum, I then go and post it again on the right forum. How about renaming PDFCreator to PDFDesignInterfaceTool?
by calvin
Wed Apr 07 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Problem with ObjectAttributeStr
Replies: 4
Views: 9093

Details on Solution

The problem was solved when Jose sent me code samples. That code is: #DEFINE acCommandToolRunDocument 53776 #DEFINE acReportStateRun 0 #DEFINE acReportStateDesign 1 #DEFINE acReportStateLoading 2 PDFviewer = CREATEOBJECT("PDFCreactiveX.PDFCreactiveX") PDFviewer.setlicenseKey ("Suite E...
by calvin
Tue Apr 06 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: PDFCreater Constants
Replies: 3
Views: 8256

PDFCreater Constants

Where can I obtain a list of constants used by PDFCreater? Thanks.
by calvin
Tue Apr 06 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: How do I make a check box print checked?
Replies: 1
Views: 5102

How do I make a check box print checked?

If openmb is a checkbox neither of the following two commands prints it as checked: PDFviewer.ObjectAttributeStr("openmb", "Text", "Yes") PDFviewer.ObjectAttributeStr("openmb", "Text", "On") I have to use objectattributestr because I am usi...
by calvin
Tue Apr 06 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Problem with ObjectAttributeStr
Replies: 4
Views: 9093

I found out that the problem was that I was not setting the page number now was I setting the form status. I wish there were more code samples around.
by calvin
Tue Apr 06 2004
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: How to set values for checkboxes
Replies: 3
Views: 5946

How to set values for checkboxes

If I have a field named openmb which is a check box, how do I set it so that it is checked when printed. I am using VFP so I have to use ObjectAttributeStr rather than objectattribute. This code does not work: PDFviewer.ObjectAttributeStr("openmb", "Text", "Yes") If I w...
by calvin
Fri Apr 02 2004
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Problem with ObjectAttributeStr
Replies: 4
Views: 9093

Problem with ObjectAttributeStr

I am using VFP and am having a problem setting the values of fields in a PDF file. I know there is a field named "Amount" in the open PDF. When I run Create PdfViewer Object Set License Open PDF file and then attempt to set a value using pdfviewer.ObjectAttributeStr("Amount",&quo...