Search found 5522 matches

by Sasha - PDF-XChange
Thu Mar 11, 2021 9:01 am
Forum: PDF-XChange Editor SDK
Topic: Default SaveTo Folder for cmd.saveAs / cmd.saveCopyAs -> 'Docs.Save.SaveAsFolderType' ignored for IStream open documents SOLVED
Replies: 11
Views: 2757

Re: Default SaveTo Folder for cmd.saveAs / cmd.saveCopyAs -> 'Docs.Save.SaveAsFolderType' ignored for IStream open docum SOLVED

Hello zarkogajic,

Yes, we do have an internal save operation that is being called from the save method.
There are plenty of events to tweak what is happening from the SDK, but no direct access to that operation.

Cheers,
Alex
by Sasha - PDF-XChange
Thu Mar 11, 2021 9:00 am
Forum: PDF-XChange Editor SDK
Topic: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED
Replies: 11
Views: 2740

Re: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED

Hello zarkogajic,

Glad you have it working.
It's being stored in the inner class variable - no access to it whatsoever. It updates from settings when the PagesView is created and when the settings change - that's all.

Cheers,
Alex
by Sasha - PDF-XChange
Thu Mar 11, 2021 8:58 am
Forum: PDF-XChange Editor SDK
Topic: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED
Replies: 18
Views: 3872

Re: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED

Hello zarkogajic,

Not the looks - just popup appearance - that's all we need to test this.

Cheers,
Alex
by Sasha - PDF-XChange
Thu Mar 11, 2021 7:45 am
Forum: PDF-XChange Editor SDK
Topic: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED
Replies: 18
Views: 3872

Re: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED

Hello zarkogajic,

Is this recreatable in the FullDemo project, so I can test it from there?

Cheers,
Alex
by Sasha - PDF-XChange
Wed Mar 10, 2021 1:07 pm
Forum: PDF-XChange Editor SDK
Topic: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED
Replies: 18
Views: 3872

Re: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED

Hello zarkogajic,

We struggle recreating this one - can you please make a few screenshots to illustrate what you mean?
Also, what did you mean by document's tab popup?

Cheers,
Alex
by Sasha - PDF-XChange
Wed Mar 10, 2021 9:31 am
Forum: PDF-XChange Editor SDK
Topic: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED
Replies: 18
Views: 3872

Re: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED

Hello zarkogajic,

That's not OK - forwarded that to our testing team for investigation - seems like a bug from our side.

Cheers,
Alex
by Sasha - PDF-XChange
Wed Mar 10, 2021 9:28 am
Forum: PDF-XChange Core API SDK
Topic: Need help integrating Core API to Excel VBA Application to combine PDF SOLVED
Replies: 11
Views: 18204

Re: Need help integrating Core API to Excel VBA Application to combine PDF SOLVED

Hello Syntax,

Can you try creating and initializing the IPXC_Inst once and then Finalizing it once per workflow? Meaning you initialize it when Excel starts and Finalize it when it shuts down - then everything should work normally.

Cheers,
Alex
by Sasha - PDF-XChange
Tue Mar 09, 2021 3:13 pm
Forum: PDF-XChange Editor SDK
Topic: Default SaveTo Folder for cmd.saveAs / cmd.saveCopyAs -> 'Docs.Save.SaveAsFolderType' ignored for IStream open documents SOLVED
Replies: 11
Views: 2757

Re: Default SaveTo Folder for cmd.saveAs / cmd.saveCopyAs -> 'Docs.Save.SaveAsFolderType' ignored for IStream open docum SOLVED

Hello zarkogajic, Here's what I can get from code comments: PXV_DocSave_Copy = 0x0002, // to enable "Save As"/"Save as Copy" modes, // used when pDest == NULL and PXV_DocSave_AllowUI is specified to ask user by "Save As"/"Save as Copy" dialogue PXV_DocSave_Swi...
by Sasha - PDF-XChange
Tue Mar 09, 2021 3:09 pm
Forum: PDF-XChange Editor SDK
Topic: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED
Replies: 11
Views: 2740

Re: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED

Hello zarkogajic, From what I see, this option is being per Page View and is being initialized from settings when the view is being created or when the settings are being changed. If you don't fire a settings changed event then there won't be no reload, thus the option value would become just like y...
by Sasha - PDF-XChange
Tue Mar 09, 2021 12:42 pm
Forum: PDF-XChange Editor SDK
Topic: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED
Replies: 11
Views: 2740

Re: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED

Hello zarkogajic,

Sadly, that is not available via the SDK. Passed the path display problem to Vasyl - probably he can help.

Cheers,
Alex
by Sasha - PDF-XChange
Tue Mar 09, 2021 12:35 pm
Forum: PDF-XChange Editor SDK
Topic: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED
Replies: 11
Views: 2740

Re: Tooltip for Link annotations - how to hide / edit. Plus: why different display when document open via IStream SOLVED

Hello zarkogajic,

The tooltip display can be turned of via the "Commenting.ShowTooltips" = false setting.

Cheers,
Alex
by Sasha - PDF-XChange
Fri Mar 05, 2021 12:30 pm
Forum: PDF-XChange Editor SDK
Topic: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED
Replies: 18
Views: 3872

Re: IUIX_CmdManager.ShowPopupMenu stPos param on 3 monitors SOLVED

Hello zarkogajic, Try using those methods: hr = m_pObj->get_ClientRect(&rc); ASSERT(IS_DS_SUCCESSFUL(hr)); if (IS_DS_SUCCESSFUL(hr)) { hr = m_pObj->ClientRectToScreen(&rc, &rc); ASSERT(IS_DS_SUCCESSFUL(hr)); } Then the rc is passed to the ShowPopupMenu method. Basically you can take a re...
by Sasha - PDF-XChange
Fri Mar 05, 2021 12:16 pm
Forum: PDF-XChange Core API SDK
Topic: Basic introduction to Core API
Replies: 3
Views: 5203

Re: Basic introduction to Core API

Hello Syntax,

The CoreAPIDemo project holds many samples that you can use:
https://github.com/tracker-software/PDF ... oreAPIDemo

Cheers,
Alex
by Sasha - PDF-XChange
Fri Mar 05, 2021 12:15 pm
Forum: PDF-XChange Core API SDK
Topic: Need help integrating Core API to Excel VBA Application to combine PDF SOLVED
Replies: 11
Views: 18204

Re: Need help integrating Core API to Excel VBA Application to combine PDF SOLVED

Hello Syntax,

We'll need to see all of your code to assist further.

Cheers,
Alex
by Sasha - PDF-XChange
Thu Mar 04, 2021 7:58 am
Forum: PDF-XChange Editor SDK
Topic: Hide tab popup menu
Replies: 12
Views: 3796

Hide tab popup menu

:)
by Sasha - PDF-XChange
Wed Mar 03, 2021 2:41 pm
Forum: PDF-XChange Editor SDK
Topic: don't modify locate of other object. but locate modified. SOLVED
Replies: 40
Views: 16153

Re: don't modify locate of other object. but locate modified. SOLVED

Hello defcon8808,

We've made a fix for this one. Providing you with dlls for testing:
3517.zip
(43.29 MiB) Downloaded 221 times
Cheers,
Alex
by Sasha - PDF-XChange
Wed Mar 03, 2021 9:12 am
Forum: PDF-XChange Editor SDK
Topic: Export a specific annot
Replies: 29
Views: 6564

Re: Export a specific annot

Hello lidds,

From what I know, we'll be holding a new release soon, so no 4 month waiting :)

Cheers,
Alex
by Sasha - PDF-XChange
Wed Mar 03, 2021 9:11 am
Forum: PDF-XChange Editor SDK
Topic: Remote execution of commands
Replies: 1
Views: 706

Re: Remote execution of commands

Hello lidds, You can transfer the simple types like strings and numbers. But some data that is required is being used as an interfaces that you cannot transfer as easily. Meaning you have for example a IPXV_AnnotsList interface and the pointers are not the same in the other program. If you can find ...
by Sasha - PDF-XChange
Tue Mar 02, 2021 12:13 pm
Forum: PDF-XChange Editor
Topic: How to develop pdf editor by C# xaml SOLVED
Replies: 2
Views: 966

Re: How to develop pdf editor by C# xaml SOLVED

Hello av8d,

Sadly, you will need a pretty strong programming background to use our SDK.

Cheers,
Alex
by Sasha - PDF-XChange
Tue Mar 02, 2021 8:46 am
Forum: PDF-XChange Editor SDK
Topic: Text Field Properties: Alignment (set from code) ? SOLVED
Replies: 5
Views: 1527

Re: Text Field Properties: Alignment (set from code) ? SOLVED

Hello zarkogajic,

Yup, sorry - the possible values are from PXC_TextJustification flags:
TJ_Left = 0
TJ_Center = 1
TJ_Right = 2

Cheers,
Alex
by Sasha - PDF-XChange
Tue Mar 02, 2021 8:37 am
Forum: PDF-XChange Editor SDK
Topic: PXC_Rect - Points to Millimeters + any ready made methods to deflate it? SOLVED
Replies: 5
Views: 1486

Re: PXC_Rect - Points to Millimeters + any ready made methods to deflate it? SOLVED

Hello zarkogajic,

Sadly, we did not include our rectangle classes functionality, as these are pretty straightforward (unlike matrices). So you will have to write the needed methods for yourself, if you have many usage cases.

Cheers,
Alex
by Sasha - PDF-XChange
Tue Mar 02, 2021 8:31 am
Forum: PDF-XChange Editor SDK
Topic: Docs.Recents.MaxItemsCount setting usage SOLVED
Replies: 8
Views: 2535

Re: Docs.Recents.MaxItemsCount setting usage SOLVED

Hello oknpp,

From what I remember, I meant something like this:
viewtopic.php?f=66&t=28041&p=108883&hil ... st#p108883

Cheers,
Alex
by Sasha - PDF-XChange
Tue Mar 02, 2021 8:26 am
Forum: PDF-XChange Editor SDK
Topic: op.combineDocs -> callback when documents being combined + default action for "Cannot Add File"
Replies: 21
Views: 4097

Re: op.combineDocs -> callback when documents being combined + default action for "Cannot Add File"

Hello zarkogajic,

If the operation is called with the OpExecFlag_NoUI flag the behavior would be just like you wanted. There is a drawback though - the progress won't be shown.

Cheers,
Alex
by Sasha - PDF-XChange
Mon Mar 01, 2021 7:14 pm
Forum: PDF-XChange Editor SDK
Topic: Using Editor Plugin SDK
Replies: 9
Views: 2533

Using Editor Plugin SDK

:)
by Sasha - PDF-XChange
Mon Mar 01, 2021 4:00 pm
Forum: PDF-XChange Editor SDK
Topic: IPXC_Document::WriteToFile + default progress SOLVED
Replies: 12
Views: 2794

Re: IPXC_Document::WriteToFile + default progress SOLVED

Hello zarkogajic,

You are calling the WriteTOFile method from the main thread - how do you expect a progress to show up?

Cheers,
Alex
by Sasha - PDF-XChange
Mon Mar 01, 2021 3:58 pm
Forum: PDF-XChange Editor SDK
Topic: Text Field Properties: Alignment (set from code) ? SOLVED
Replies: 5
Views: 1527

Re: Text Field Properties: Alignment (set from code) ? SOLVED

Hello zarkogajic,

When you have the IPXC_FormField interface, then you can obtain the Widget. After that cast it's Data to IPXC_AnnotData_Widget and you will have the DefaultTextAlign method - then you can set it for example with UIX_TextAlign.UIX_TextAlign_Center.

Cheers,
Alex
by Sasha - PDF-XChange
Mon Mar 01, 2021 3:54 pm
Forum: PDF-XChange Editor SDK
Topic: PXC_Rect - Points to Millimeters + any ready made methods to deflate it? SOLVED
Replies: 5
Views: 1486

Re: PXC_Rect - Points to Millimeters + any ready made methods to deflate it? SOLVED

Hello zarkogajic,

We have the IPXV_Inst::GetMeasureUnitInfo method available.

Cheers,
Alex
by Sasha - PDF-XChange
Mon Mar 01, 2021 3:50 pm
Forum: PDF-XChange Editor SDK
Topic: op.combineDocs + AddRootBookmarks + some info on internals SOLVED
Replies: 6
Views: 1585

Re: op.combineDocs + AddRootBookmarks + some info on internals SOLVED

Hello zarkogajic,

Done - the RootBookmarkTitle has been added to the input item dictionary. This will be available from the next 353 release.

Cheers,
Alex
by Sasha - PDF-XChange
Wed Feb 24, 2021 1:45 pm
Forum: PDF-XChange Editor SDK
Topic: IPXC_Document::WriteToFile + default progress SOLVED
Replies: 12
Views: 2794

Re: IPXC_Document::WriteToFile + default progress SOLVED

Hello zarkogajic,

Saving can take more time but the progress itself inside of the method can be shorter. Meaning that it's not used for some parts of the code that also can take some time. Thus the time between start and stop is not enough for it to show up.

Cheers,
Alex
by Sasha - PDF-XChange
Wed Feb 24, 2021 11:00 am
Forum: PDF-XChange Editor
Topic: Missing font name.
Replies: 10
Views: 1841

Re: Missing font name.

Hello dxcarnadi,

And what properties do you see in the properties pane when you select that text block?

Cheers,
Alex
by Sasha - PDF-XChange
Wed Feb 24, 2021 8:53 am
Forum: PDF-XChange Editor SDK
Topic: Add text Programmatically
Replies: 2
Views: 746

Re: Add text Programmatically

Hello zarkogajic,

Thanks for the assistance :)

Cheers,
Alex
by Sasha - PDF-XChange
Tue Feb 23, 2021 9:33 am
Forum: PDF-XChange Editor SDK
Topic: Catch: "Error [PXCLib]: Required value not found" SOLVED
Replies: 16
Views: 4039

Re: Catch: "Error [PXCLib]: Required value not found" SOLVED

Hello zarkogajic, Just debugged our inner code. The check for this would be getting the Doc.Pages.Count. If it results in an exception (and it should in this case, because of the error HRESULT) or will return 0 - then the file is corrupted. The native converter succeeds opening the IPXC_Document, bu...
by Sasha - PDF-XChange
Mon Feb 22, 2021 3:57 pm
Forum: PDF-XChange Editor SDK
Topic: Catch: "Error [PXCLib]: Required value not found" SOLVED
Replies: 16
Views: 4039

Re: Catch: "Error [PXCLib]: Required value not found" SOLVED

Hello zarkogajic, Just tested this - the document indeed has SVF_MissalignedObj and SVF_Corrected flags. But here's what our expert said: File is not only a weird one but a broken one too. Why Adobe opens this - we can't tell. Sadly we cannot open this one as it's broken and we don't know how to rec...
by Sasha - PDF-XChange
Mon Feb 22, 2021 2:39 pm
Forum: PDF-XChange Editor SDK
Topic: Catch: "Error [PXCLib]: Required value not found" SOLVED
Replies: 16
Views: 4039

Re: Catch: "Error [PXCLib]: Required value not found" SOLVED

Hello zarkogajic,

Nope - that file is still "in transit" - will have to obtain access to the server first :)

Cheers,
Alex
by Sasha - PDF-XChange
Mon Feb 22, 2021 1:23 pm
Forum: PDF-XChange Editor SDK
Topic: Catch: "Error [PXCLib]: Required value not found" SOLVED
Replies: 16
Views: 4039

Re: Catch: "Error [PXCLib]: Required value not found" SOLVED

Hello zarkogajic,

Have you done doc.pages.count, like I advised in a similar topic?

Cheers,
Alex
by Sasha - PDF-XChange
Mon Feb 22, 2021 10:41 am
Forum: PDF-XChange Editor SDK
Topic: Catch: "Error [PXCLib]: Required value not found" SOLVED
Replies: 16
Views: 4039

Re: Catch: "Error [PXCLib]: Required value not found" SOLVED

Hello zarkogajic,

Nope, the IPXS_Document.BrokenFlags includes all of the error codes including the SVF_IoReadFailed and SVF_FailLoadValidObject. And all of these are being detected on the Structure level.

Cheers,
Alex
by Sasha - PDF-XChange
Mon Feb 22, 2021 10:23 am
Forum: PDF-XChange Editor SDK
Topic: Catch: "Error [PXCLib]: Required value not found" SOLVED
Replies: 16
Views: 4039

Re: Catch: "Error [PXCLib]: Required value not found" SOLVED

Hello zarkogajic,

You mean that his does not return anything?
https://sdkhelp.pdf-xchange.com/vi ... rokenFlags

Cheers,
Alex
by Sasha - PDF-XChange
Fri Feb 19, 2021 1:09 pm
Forum: PDF-XChange Editor SDK
Topic: How can I open a PDF file as IPXV_Document?
Replies: 9
Views: 2521

Re: How can I open a PDF file as IPXV_Document?

Hello baumunk,
Well for that you should use the IPXV_ExportConverter::Convert method - there you should pass the IPXC_Document along with other params.
Cheers,
Alex
by Sasha - PDF-XChange
Fri Feb 19, 2021 8:58 am
Forum: PDF-XChange Editor SDK
Topic: Changing Frame Header Colors
Replies: 31
Views: 8812

Re: Changing Frame Header Colors

Hello RMan,

Forwarded this to the responsible developer. Hopefully he can tell more.

Cheers,
Alex