Search found 9 matches
- 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"...
- Wed Apr 07 2004
- Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
- Topic: PDFCreater Constants
- Replies: 3
- Views: 8256
- Wed Apr 07 2004
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: How to set values for checkboxes
- Replies: 3
- Views: 5946
- 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...
- 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.
- 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...
- Tue Apr 06 2004
- Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
- Topic: Problem with ObjectAttributeStr
- Replies: 4
- Views: 9093
- 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...
- 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...