Search found 12 matches

by alexmak
Fri Dec 15 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Error calling external object function name
Replies: 4
Views: 11711

That would be the reason why it's not working in code or thru the stand alone exe. Thank you.
by alexmak
Mon Dec 11 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Error calling external object function name
Replies: 4
Views: 11711

I am calling the SetLicenseKey before the open command and ls_temp does compute to a valid path. I have also tried to hardcode the path in the first parameter as well, but still gives me an error.
by alexmak
Thu Dec 07 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Error calling external object function name
Replies: 4
Views: 11711

Error calling external object function name

I am trying to export pdf files to jpg format using code below: for i = 1 to upperbound(ls_print_order) ole_pdf.object.open(ls_print_order , "") ole_pdf.object.optimizedocument(0) ls_temp = ls_temp + string(i) + 'avanue_batch_printing.jpg' ole_pdf.object.exporttojpeg(ls_temp, 600, 9) ole_p...
by alexmak
Mon Nov 27 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Cannot print PDF file generated by PDF Creator
Replies: 3
Views: 14441

I am now using the new dll's (version 2.01-b), but it still creates files that have one or more blank pages or incomplete files in them. I am just overwritting the 3 dll's with the newer version and then re-registering the dll's. Would there also be a conflict if the compiled powerbuilder applicatio...
by alexmak
Mon Nov 20 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Cannot print PDF file generated by PDF Creator
Replies: 3
Views: 14441

Forgot to mention when I print all pages from the file that displays ok and does not have the "Wrong Operand Type" error, I only get the first 2 pages and then a error on the printer lcd. The error is "Error Type Check Offending Command Cshow Stack PDF..." and then it seems like ...
by alexmak
Mon Nov 20 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Cannot print PDF file generated by PDF Creator
Replies: 3
Views: 14441

Cannot print PDF file generated by PDF Creator

I am using 2.0g-4 and occationally, some PDF files created on a client's machine is not able to be printed. In one PDF file, I am able to open with Adobe Reader 7 and all pages can be view and everything seems fine, but I cannot print the file if I print all pages. If I print the file in parts, I am...
by alexmak
Thu Feb 16 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: prints out with black boxes
Replies: 1
Views: 7110

prints out with black boxes

I am using version 2.0f and when a client prints out a pdf in our custom app using the amyuni ole printpage(), the printout has blackboxes where the text should be. All the formatting is there, just the text is replaced by black boxes. When the same pdf file is printed out using adobe reader, the pr...
by alexmak
Wed Jan 25 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Saving to file
Replies: 5
Views: 11034

My code as follows: //open first pdf, must have at least 1 pdf for printing if upperbound(ls_print_order) > 0 then ole_pdf.object.zoomfactor = 100 ole_pdf.object.open(ls_print_order[1], "") j = 0 //append files for printing for i = 1 to (upperbound(ls_print_order) - 1) ole_pdf.object.appen...
by alexmak
Tue Jan 24 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: startprint() error
Replies: 4
Views: 9924

startprint() error

When I call the startprint("", true) to display the printer select dialog and cancel out of the printer select, I get an error. Do you have anything built in to trap this error? This function does not return anything, maybe it should?
by alexmak
Tue Jan 24 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Saving to file
Replies: 5
Views: 11034

I have tried saving after every append as well as every 4th append and the save still seems to freeze the app. Any other suggestions?
by alexmak
Mon Jan 23 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Amyuni Print size 200mb v 3mb for adobe
Replies: 5
Views: 12033

Hello, I have the same issue as posted above. I have clearpage() after printpage() in the for loop, but my print spool is around 90mb for 16 pages. Also some pages are being printed being either having a half inch cut off the right side or a half inch on the left side being crammed together and some...
by alexmak
Mon Jan 23 2006
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Saving to file
Replies: 5
Views: 11034

Saving to file

Hello, I am using PDF Creator Developer version to append x amount of pdf files together to send to printer that needs to be in a certain order. I am developing in powerbuilder 9. I have created my ole object and am opening the first file in the array of file paths and then appending the rest of the...