Search found 664 matches

by Corwin - Tracker Sup
Tue Dec 30, 2008 12:23 pm
Forum: PDF-XChange Viewer (End Users)
Topic: SetDocumentProperty won't work
Replies: 3
Views: 1178

Re: SetDocumentProperty won't work

Try to use document ID when you calling SetDocumentProperty function. In your case you can use iId variable.
Call CoPDFXCview1.SetDocumentProperty(iId, bsVerb, bsAction, 0)
by Corwin - Tracker Sup
Tue Dec 16, 2008 1:06 pm
Forum: Office2PDF & MS Office Addin
Topic: mass generation from web pages
Replies: 7
Views: 3440

Re: mass generation from web pages

Problem with blank pages was already solved. Fixed version of Office to PDF will be available in the end of this month. Also must admit that files which you are trying to convert has long number in the end of filename, so this conflicts with PDF-XChange Save Options and you getting PDF's with wrong ...
by Corwin - Tracker Sup
Fri Nov 14, 2008 1:59 pm
Forum: Office2PDF & MS Office Addin
Topic: Runtime error and options do not save
Replies: 23
Views: 7417

Re: Runtime error and options do not save

Do you have such runtime error when you trying to convert any MS Word documents or it occur only on some specific document?
Also when exactly you get error: when you trying to add file to the list or when you pressing Go button.
by Corwin - Tracker Sup
Wed Nov 12, 2008 6:09 pm
Forum: Office2PDF & MS Office Addin
Topic: Bibliography reference not processed
Replies: 8
Views: 4206

Re: Bibliography reference not processed

Can I ask you what exactly bibliography citation styles you are using in this document? MS Word 2007 with default settings recognizes it as "Unknown style". As I can see the problem is that references [1] (which actually is citation) doesn't point to some specific place in the document. So...
by Corwin - Tracker Sup
Wed Nov 12, 2008 4:48 pm
Forum: Office2PDF & MS Office Addin
Topic: Bibliography reference not processed
Replies: 8
Views: 4206

Re: Bibliography reference not processed

I'm afraid that file that you have sent to us doesn’t have any kind of active content which can be translated as Cross-reference link. Actually if you want to create bibliography references in PDF I can recommend you to create bookmark at needed bibliography item (Ribbon panel -> Insert tab -> Links...
by Corwin - Tracker Sup
Fri Oct 24, 2008 5:10 pm
Forum: PDF-XChange Print Drivers
Topic: PDF-XChange 4 PRO: pdfSafer4.exe
Replies: 6
Views: 2546

Re: PDF-XChange 4 PRO: pdfSafer4.exe

Please send us .tmp file created by the driver. Instructions how to get this file are here: https://forum.pdf-xchange.com/posting.php?mode=view&t=800 Also, source .ppt file will be helpful. You can post this here (please note, you need to archive the file to ZIP format before posting it) or send...
by Corwin - Tracker Sup
Wed Oct 15, 2008 2:40 pm
Forum: Office2PDF & MS Office Addin
Topic: PDF bookmark headings bug
Replies: 21
Views: 7393

Re: PDF bookmark headings bug

Do you have such problems with file which is attached to the first message in this topic?
by Corwin - Tracker Sup
Mon Oct 13, 2008 2:03 pm
Forum: PDF-XChange Drivers API SDK
Topic: watermark in API
Replies: 17
Views: 5942

Re: watermark in API

First you need to create watermark using AddTextWatermark (or AddImageWatermark ). Then add watermark name (which you specified in sName ) to the list of watermark names which will be added to the document. This can be done by using set_Option ("Watermarks.Watermarks", sName). Finally, ena...
by Corwin - Tracker Sup
Wed Oct 01, 2008 3:48 pm
Forum: Office2PDF & MS Office Addin
Topic: Page link bug
Replies: 2
Views: 2108

Re: Page link bug

>bug3.zip I'm afraid that office addin cannot recognize fields references if they are placed in Textbox. To avoid such problem I may suggest you to use Hyperlink in Textbox instead of field reference. >bug4.zip It looks like some problem in MS Word which cannot give right coordinates to bookmarks wh...
by Corwin - Tracker Sup
Wed Sep 24, 2008 4:54 pm
Forum: PDF-Tools SDK (all our PDF DLL Libraries)
Topic: Please help with PXC_SignDocumentXXX in VB.NET
Replies: 10
Views: 4857

Re: Please help with PXC_SignDocumentXXX in VB.NET

Hello.
Please, look at the sample project which is attached to this message.
HTH
by Corwin - Tracker Sup
Wed Sep 24, 2008 10:50 am
Forum: Office2PDF & MS Office Addin
Topic: Detecting Links not correct
Replies: 8
Views: 3909

Re: Detecting Links not correct

It's kind of strange, because PDF-XChange should not generate hyperlinks in PDF file if they were disabled in document. Please make sure that hyperlinks in PDF file wasn’t result of hyperlink recognition in PDF viewer. Try to change link border type and color in PDF-XChange Excel options. That may h...
by Corwin - Tracker Sup
Tue Sep 23, 2008 2:53 pm
Forum: Office2PDF & MS Office Addin
Topic: Detecting Links not correct
Replies: 8
Views: 3909

Re: Detecting Links not correct

Hello.
Any chance you could zip and post the Excel document causing the issue?
Thanks.
by Corwin - Tracker Sup
Mon Sep 22, 2008 12:57 pm
Forum: PDF-XChange Drivers API SDK
Topic: Problems with PDF-XChange 4 Drivers API SDK and Delphi
Replies: 17
Views: 5184

Re: Problems with PDF-XChange 4 Drivers API SDK and Delphi

Please let us know the exact version of your OS.
by Corwin - Tracker Sup
Fri Aug 29, 2008 1:33 pm
Forum: PDF-XChange Viewer SDK
Topic: Error when executing DoVerb Method
Replies: 5
Views: 1991

Re: Error when executing DoVerb Method

Please try the following code:

Code: Select all

object vDataIn = "SelectTool";
try
{
    object vDataOut;
    axCoPDFXCview1.DoVerb(null, "ExecuteCommand", vDataIn, out vDataOut, 0);
}
catch (Exception ex)
{                
}