Search found 14 matches

by ixm7
Tue Feb 24 2004
Forum: Visual Basic Community
Topic: pdfdoc.Open goes to 100% CPU and never completes
Replies: 1
Views: 5269

pdfdoc.Open goes to 100% CPU and never completes

I use cdintf210.dll (version h or 2.1.0.6) in a loop to set PDF files properties (author, title) for existing pdf files. These PDF files were all created by bursting a single Crystal 8.5 report into multiple PDF exports (using Crystal's PDF export capability). On one particular file (no different fr...
by ixm7
Mon Feb 02 2004
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Changes in cdintf210.dll e to h
Replies: 3
Views: 5352

Hi Joan,

Is the loss of embedded fonts upon opening an existing PDF file a known issue with your interface dll?

Is there a solution?

Thanks,
- Ido
by ixm7
Sun Feb 01 2004
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Changes in cdintf210.dll e to h
Replies: 3
Views: 5352

With the new cdintf210.dll, the dreaded "Expected End of Color Space" error (which caused a failure to open the PDF file) is now gone... :D Instead, a warning message stating that: -------------------------------------------------------------------------------------- "Could not find a...
by ixm7
Sun Feb 01 2004
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Changes in cdintf210.dll e to h
Replies: 3
Views: 5352

Changes in cdintf210.dll e to h

Where can I find information about the changes that were incorporated into the cdintf210.dll between the e and h versions? In particular, I'm interested in finding out if any issues with PDF file modifications leading to file corruption (specifically, PDF output from Crystal 8.5) have been identifie...
by ixm7
Mon Oct 27 2003
Forum: Visual Basic Community
Topic: Saving to Same File After Changing Properties
Replies: 5
Views: 9959

Joan,

Thanks; I submitted a Before/After file versions.

Regards,
- Ido
by ixm7
Wed Oct 22 2003
Forum: Visual Basic Community
Topic: Saving to Same File After Changing Properties
Replies: 5
Views: 9959

The new version didn't fix the file corruption problem (this occurs only in PDF files that contain an image).

I'll try again when a newer version is released.

Thanks,
- Ido
by ixm7
Fri Sep 12 2003
Forum: Visual Basic Community
Topic: Saving to Same File After Changing Properties
Replies: 5
Views: 9959

Joan, Thanks for the quick response! My version was 2.1.0.3 I downloaded the most recent one and it is 2.1.0.5 I'll test to see if this fixes the sporadic file corruption problem (Adobe Reader: "There was an error opening this document. The file is damaged and could not be repaired"). Chee...
by ixm7
Thu Sep 11 2003
Forum: Visual Basic Community
Topic: Saving to Same File After Changing Properties
Replies: 5
Views: 9959

Saving to Same File After Changing Properties

Are there known issues/limitations (file corruption?) related to using the interface dll to open an existing PDF file, changing properties, and then saving to the SAME file? ---------------------------------- pdfdoc.Open (DiskFileName) pdfdoc.Title = "Some Title" pdfdoc.Save (DiskFileName)...
by ixm7
Mon Jun 23 2003
Forum: Visual Basic Community
Topic: "Expected end of color space" Error after setting
Replies: 2
Views: 8250

Thanks, Joan.
by ixm7
Sat Jun 21 2003
Forum: Visual Basic Community
Topic: "Expected end of color space" Error after setting
Replies: 2
Views: 8250

"Expected end of color space" Error after setting

Using Crystal Reports objects I export a report to pdf (that phase doesn't use Amyuni). I then use the Common Driver Interface (cdintf210.dll) to set the properties of the pdf file: ------------------------------------------- Dim pdfdoc As New CDIntfEx.Document pdfdoc.Open (DiskFileName) pdfdoc.Titl...
by ixm7
Thu May 01 2003
Forum: Visual Basic Community
Topic: pdfdoc.SetBookmark Only Goes Deeper
Replies: 1
Views: 5126

Please ignore. I believe I found the soulution.

Thanks,
- Ido
by ixm7
Thu May 01 2003
Forum: Visual Basic Community
Topic: pdfdoc.SetBookmark Only Goes Deeper
Replies: 1
Views: 5126

pdfdoc.SetBookmark Only Goes Deeper

Using VB and the Common Driver Interface dll The following code: ------------------------------------------------- pdfdoc.SetBookmark 1, "Animal", 0 pdfdoc.SetBookmark 1, "Cat", 1 pdfdoc.SetBookmark 2, "Dog", 1 pdfdoc.SetBookmark 1, "Mineral", 0 --------------...
by ixm7
Wed Apr 30 2003
Forum: Visual Basic Community
Topic: Just setting pdf document properties
Replies: 2
Views: 6791

Many Thanks!!!

- Ido
by ixm7
Tue Apr 29 2003
Forum: Visual Basic Community
Topic: Just setting pdf document properties
Replies: 2
Views: 6791

Just setting pdf document properties

I need to use VB to set the document properties (title, subject, keywords, author) of existing pdf documments. I was led to believe that using just the Common Driver Interface (cdintf210.dll) I can achieve this. Based on the tech documentation that comes with that dll, I can see these are all simple...