Search found 21 matches

by TomChandler
Tue Feb 16, 2021 1:11 pm
Forum: PDF-XChange Viewer SDK
Topic: International.LocaleID
Replies: 5
Views: 3779

Re: International.LocaleID

Perfect, thank you.
by TomChandler
Mon Feb 15, 2021 7:29 pm
Forum: PDF-XChange Viewer SDK
Topic: International.LocaleID
Replies: 5
Views: 3779

Re: International.LocaleID

Can you clarify the syntax I would need for those? The syntax I've found (and works) looks like this:

SetProperty(@"International.LocaleID", 0x0c0a, 0);

But on that page, it's all based 10 numbers from what I can see. Do I need to convert those to hex?
by TomChandler
Fri Feb 12, 2021 7:47 pm
Forum: PDF-XChange Viewer SDK
Topic: International.LocaleID
Replies: 5
Views: 3779

International.LocaleID

Is there a way to set the LocaleID based on a culture code (i.e. es-ES) in C#? So far I've only found ways to set it this way: SetProperty(@"International.LocaleID", 0x0c0a, 0); If not, is there a list of the values for the different culture codes? I've only mange to find a partial list so...
by TomChandler
Fri Oct 30, 2020 2:00 pm
Forum: PDF-XChange Drivers API SDK
Topic: Option[@"Save.File"] Not setting file name
Replies: 0
Views: 7632

Option[@"Save.File"] Not setting file name

Most of the time, this works fine. However, I'm running into an issue on certain PCs where I set the Option[@"Save.File"] and it's not getting retained or used when the file actually writes to disk. So when the save event happens, the file name in ".\Untitled.pdf". It's correct i...
by TomChandler
Wed May 08, 2019 5:12 pm
Forum: PDF-XChange Viewer SDK
Topic: Deleting Page from Thumnails
Replies: 5
Views: 6240

Re: Deleting Page from Thumnails

I found a work around for this issue. We're already intercepting keystrokes, so I'm just suppressing the delete key when we're in the thumnail view since we don't want them to be able to do it from there anyway.
by TomChandler
Mon May 06, 2019 5:19 pm
Forum: PDF-XChange Viewer SDK
Topic: Open Document Limit
Replies: 1
Views: 4014

Open Document Limit

We get an error that says "Too many documents are already opened" if we try to open more than 50 documents. Is this a hard coded limit, or is there a way to change this?
by TomChandler
Fri May 03, 2019 3:42 pm
Forum: PDF-XChange Viewer SDK
Topic: Deleting Page from Thumnails
Replies: 5
Views: 6240

Re: Deleting Page from Thumnails

So it looks like our version is 2.5.322.8 based off of the version in C:\Program Files\Tracker Software\PDF Viewer\Win32\PDFXCviewAx.dll Is that the correct place to locate the version? I see there's a 2.5.322.10 on your web site. Are there any fixes related to this issue that I should try it? I kno...
by TomChandler
Mon Apr 29, 2019 7:30 pm
Forum: PDF-XChange Viewer SDK
Topic: Deleting Page from Thumnails
Replies: 5
Views: 6240

Re: Deleting Page from Thumnails

I wanted to check to see if you have any suggestions on this question.
by TomChandler
Fri Apr 26, 2019 12:16 pm
Forum: PDF-XChange Viewer SDK
Topic: Tab Drag and Drop
Replies: 11
Views: 9350

Re: Tab Drag and Drop

Hi Tom. Unfortunately, there is no way to get index of document's tab. But we can add simple feature like GetDocumentTabIndex for you. Cheers. What kind of time frame would there be on that? I have a pretty aggressive due date for this project. Edit: Is there just a way to get a list of documents a...
by TomChandler
Thu Apr 25, 2019 7:48 pm
Forum: PDF-XChange Viewer SDK
Topic: Deleting Page from Thumnails
Replies: 5
Views: 6240

Deleting Page from Thumnails

When a user deletes the page from the page thumbnails using the Delete key, my application locks up. (the page does delete from the thumbnails). I'm not sure where to start on this. Any suggestions on what I may need to look at?
by TomChandler
Wed Apr 24, 2019 10:03 pm
Forum: PDF-XChange Viewer SDK
Topic: Tab Drag and Drop
Replies: 11
Views: 9350

Re: Tab Drag and Drop

Hello Tom, The Viewer SDK is quite an older one - and it didn't have all events exposed as far as I remember. I did check the help pages but could not find the answer to your question myself - so I will ask a colleague from the dev team who was working on the Viewer SDK, and see if he can assist fu...
by TomChandler
Tue Apr 23, 2019 3:56 pm
Forum: PDF-XChange Viewer SDK
Topic: Tab Drag and Drop
Replies: 11
Views: 9350

Re: Tab Drag and Drop

So when I call GetDocumentIndex, it seems to return the index of the document in the array, not the tab index. What's the method to use for the tab index? I'm not finding it in the documentation. Can you point me in the right direction?
by TomChandler
Tue Apr 23, 2019 1:38 pm
Forum: PDF-XChange Viewer SDK
Topic: Combining Two Documents
Replies: 3
Views: 4928

Re: Combining Two Documents

So I wanted to close the source document when this was done, but when I do that the original document disappears. var sourceId = 4096; var targetId = 4095; _viewer.SetProperty(@"Operations.InsertPages.FromExternal", 0); _viewer.SetProperty(@"Operations.InsertPages.DocID", sourceI...
by TomChandler
Tue Apr 23, 2019 12:21 pm
Forum: PDF-XChange Viewer SDK
Topic: Tab Drag and Drop
Replies: 11
Views: 9350

Re: Tab Drag and Drop

Is there a newer SDK that has similar functionality to the viewer that we should be considering?
by TomChandler
Tue Apr 23, 2019 12:07 pm
Forum: PDF-XChange Viewer SDK
Topic: Tab Drag and Drop
Replies: 11
Views: 9350

Re: Tab Drag and Drop

No, that hadn't occurred to me. I could probably make that work. Is there a way to cancel the drop event all together to avoid that complexity?
by TomChandler
Mon Apr 22, 2019 7:40 pm
Forum: PDF-XChange Viewer SDK
Topic: Tab Drag and Drop
Replies: 11
Views: 9350

Re: Tab Drag and Drop

So I've figured out a way to detect when we're dragging a tab from one location to another, but I still can cancel the re-order event. I need it so I can detect them dropping a tab, but I can't have them move or I get the wrong target. Is there a cancel able event there?
by TomChandler
Fri Apr 19, 2019 7:21 pm
Forum: PDF-XChange Viewer SDK
Topic: Combining Two Documents
Replies: 3
Views: 4928

Re: Combining Two Documents

Never mind, I figured out I had modified some parameters from the example, but not all the ones I needed. I got it to work without error now. This was the code I ended up with: _viewer.SetProperty(@"Operations.InsertPages.FromExternal", 0); _viewer.SetProperty(@"Operations.InsertPages...
by TomChandler
Fri Apr 19, 2019 6:55 pm
Forum: PDF-XChange Viewer SDK
Topic: Combining Two Documents
Replies: 3
Views: 4928

Combining Two Documents

I have this code for combining two documents, but when I get to the last statement, it throws the error on the DoDocumentVerb line.. I'm not sure what I'm missing, or if there's a better way to do what I'm trying to accomplish. _viewer.SetProperty(@"Operations.InsertPages.RangeType", @&quo...
by TomChandler
Fri Apr 19, 2019 3:39 pm
Forum: PDF-XChange Viewer SDK
Topic: Tab Drag and Drop
Replies: 11
Views: 9350

Tab Drag and Drop

I'm looking for a way to capture the tab drag and drop event so that I can combine the documents instead of re-ordering them. However, I haven't found a way to either cancel the re-order event, or hook into the drag/drop event. Can someone point me in the right direction?
by TomChandler
Fri Feb 01, 2019 9:32 pm
Forum: PDF-XChange Viewer SDK
Topic: DragDrop Event
Replies: 0
Views: 11140

DragDrop Event

I’m trying to implement a drag and drop process in C# to be able to combined multiple tabs in the viewer into a single document. Can the control react to a dragdrop operation? I’m not seeing that this is available but I'm hoping I'm missing something.
by TomChandler
Tue May 08, 2018 1:29 pm
Forum: PDF-XChange Drivers API SDK
Topic: PDFX7SA_sm.exe Installation
Replies: 1
Views: 2900

PDFX7SA_sm.exe Installation

We upgraded our application from PDFX 6 to PDFX 7. We were using the PDFX6SA_sm.exe in our installer with the following switches, and it worked just fine: /SILENT /NORESTART /COMPONENTS="pdfSaver,PDF-XChange driver,Languagess" /DIR="c:\Program Files (x86)\{ApplicationName}" /DRVw...