Search found 2342 matches

by Vasyl-Tracker Dev Team
Thu Mar 14, 2024 7:53 pm
Forum: Touchscreen Devices
Topic: Preview in Windows explorer - Swipe to scroll
Replies: 6
Views: 303

Re: Preview in Windows explorer - Swipe to scroll

Hello Loki@99, We just checked our latest version and see that we are able to scroll-by-fingers inside our pdf-previewer in Windows Explorer. Yes, the zoom-by-2fingers doesn't work at the moment but will work in the upcoming build. But scroll-by-fingers works for us definitely. So let me ask some qu...
by Vasyl-Tracker Dev Team
Tue Mar 12, 2024 4:30 am
Forum: PDF-XChange Editor
Topic: Hotkey layer's SOLVED
Replies: 2
Views: 789

Re: Hotkey layer's SOLVED

Hi JvdL.

To merge layers you may use the feature from the context menu in Layers pane:
image.png
HTH.
by Vasyl-Tracker Dev Team
Thu Feb 29, 2024 5:53 am
Forum: PDF-XChange Editor SDK
Topic: Problems with pxcInst.OpenDocumentFromFile
Replies: 4
Views: 67

Re: Problems with pxcInst.OpenDocumentFromFile

Hi Michael. Please try this one: // somewhere inside the Form::Init() m_Inst = new PXV_Inst(); m_Inst.Init(....); ..... private void btn_test_Click(object sender, EventArgs e) { IPXC_Inst pxcInst = (IPXC_Inst)m_Inst.GetExtension("PXC"); for (int zz = 0; zz < 100; zz++) { { // set additiona...
by Vasyl-Tracker Dev Team
Thu Feb 29, 2024 4:34 am
Forum: PDF-XChange Editor SDK
Topic: Some IOperation PagesRange.RangeTypes Custom and CustomRect SOLVED
Replies: 4
Views: 493

Re: Some IOperation PagesRange.RangeTypes Custom and CustomRect SOLVED

It will not be so difficult to change just the color of the selected fragments of text. As shown in your screenshot. But it will be incredibly difficult to change the font for text-fragments exactly and only covered by the selection rectangle. Because when you change font - it may (will) reflow the ...
by Vasyl-Tracker Dev Team
Thu Feb 29, 2024 4:09 am
Forum: PDF-XChange Editor SDK
Topic: PXV_DocCloseFlags in e.document.beforeClose SOLVED
Replies: 5
Views: 688

Re: PXV_DocCloseFlags in e.document.beforeClose SOLVED

Any chance to add PXV_DocCloseFlags value to that event In the next build you will be able to get PXV_DocCloseFlags value from pEvent.Param2. and also allow *not* closing even if pEvent.Param1 == 0 Surry, but no. When app(or one dev) decided to close doc without any interaction with user - it canno...
by Vasyl-Tracker Dev Team
Tue Feb 27, 2024 9:31 pm
Forum: PDF-XChange Editor SDK
Topic: (Default) OCR in SDK, .dat files in Tesseract folder -> .traineddata SOLVED
Replies: 9
Views: 637

Re: (Default) OCR in SDK, .dat files in Tesseract folder -> .traineddata SOLVED

Our dev said that it was an upgrade of tesseract modules from v4 to newer v5. And newer tesseract uses different format for lang-files. Technically, the container is the same, but the data inside might be different. So it looks like the v5 tesseract is able to open and read those files, but there is...
by Vasyl-Tracker Dev Team
Tue Feb 27, 2024 2:27 am
Forum: PDF-XChange Editor SDK
Topic: (Default) OCR in SDK, .dat files in Tesseract folder -> .traineddata SOLVED
Replies: 9
Views: 637

Re: (Default) OCR in SDK, .dat files in Tesseract folder -> .traineddata SOLVED

I will ask my colleagues about your tricky method. Still not sure it is correct to just rename old lang files...
by Vasyl-Tracker Dev Team
Tue Feb 27, 2024 2:21 am
Forum: PDF-XChange Editor SDK
Topic: op.bookmarks.autoGenerateFromText / Root.Options.PresetID / load presets from file ? SOLVED
Replies: 5
Views: 7262

Re: op.bookmarks.autoGenerateFromText / Root.Options.PresetID / load presets from file ? SOLVED

PresetID can be used only for preset that is loaded already into special presets-array, which exists somewhere in Editor's settings. Editor and its plugins has a lot different presets-arrays. And operation 'knows' which array needs to be used when PresetID is specified. For example the op.bookmarks....
by Vasyl-Tracker Dev Team
Tue Feb 27, 2024 2:09 am
Forum: PDF-XChange Editor SDK
Topic: PXV_DocCloseFlags in e.document.beforeClose SOLVED
Replies: 5
Views: 688

Re: PXV_DocCloseFlags in e.document.beforeClose SOLVED

No way at the moment to get such flags fro this event. Now you have only this

bool bAllowCancel = pEvent.Param1 != 0;

bAllowCancel - if true then you can prevent closing doc by:

Code: Select all

if (bAllowCancel)
{
    pEvent.Handled = true;
    pEvent.Result = 1; // any non-zero
}
by Vasyl-Tracker Dev Team
Tue Feb 27, 2024 2:02 am
Forum: PDF-XChange Editor SDK
Topic: Some IOperation PagesRange.RangeTypes Custom and CustomRect SOLVED
Replies: 4
Views: 493

Re: Some IOperation PagesRange.RangeTypes Custom and CustomRect SOLVED

Hi Zarko.

You are right, it is not implemented yet.
But seems the idea isn't too crazy and we will make a feature request to do it in the future. :wink:

Cheers.
by Vasyl-Tracker Dev Team
Fri Feb 23, 2024 6:33 pm
Forum: PDF-XChange Editor
Topic: Comments in Acrobat are garbled when comments using Japanese font are added first in PDF-XChange Editor.
Replies: 15
Views: 2239

Re: Comments in Acrobat are garbled when comments using Japanese font are added first in PDF-XChange Editor.

Hi rakunavi. It seems we can promise that this long-living and annoying bug will be fixed in the next build, for 100%. Sorry for the inconvenience. Info for other customers: this problem seems to appear only on Japanese windows (but not on English windows with installed Japanese lang-pack) and only ...
by Vasyl-Tracker Dev Team
Tue Feb 06, 2024 5:03 am
Forum: PDF-XChange Editor
Topic: Copy Full File Name (again)
Replies: 20
Views: 1083

Re: Copy Full File Name (again)

Hi Guys. We solved this issue a long time ago... image.png - here, you may see two different commands in the context menu for the document tab. The "Copy Full File Name" - just copies the full path (plain text) to the clipboard. The "Copy File" - copies to the clipboard the refer...
by Vasyl-Tracker Dev Team
Tue Feb 06, 2024 1:11 am
Forum: PDF-XChange Editor SDK
Topic: How to add text to an xform
Replies: 3
Views: 2335

Re: How to add text to an xform

The working example is here: PDFXEdit.IPXC_Document doc = pdfCtl.Doc.CoreDoc; PDFXEdit.IPXC_ContentCreator cc = doc.CreateContentCreator(); IPXC_Font fnt = doc.CreateNewFont("Arial", (int)PXC_CreateFontFlags.CreateFont_Italic, 600); // heavy italic cc.SetFont(fnt); cc.SetFontSize(12.0); //...
by Vasyl-Tracker Dev Team
Tue Feb 06, 2024 12:31 am
Forum: PDF-XChange Editor SDK
Topic: Bookmarks to textfile
Replies: 1
Views: 288

Re: Bookmarks to textfile

Hi troutinger. Sorry for the delay with this one.. We checked this case and couldn't reproduce your issue with the latest 10.2.1.385 build. Please check if your Environment.CurrentDirectory + "\\Bookmarks.pvp" gives you the correct path which points to the existing file. And please be sure...
by Vasyl-Tracker Dev Team
Thu Jan 25, 2024 7:04 pm
Forum: PDF-XChange Editor SDK
Topic: Pinned Recents Not Saving on Close and Reopen
Replies: 5
Views: 112

Re: Pinned Recents Not Saving on Close and Reopen

Hi DwightSchrute.

To keep the files opening history (and pinned state too) you need to save/load the history-files too. Please look at our FullDemo SDK sample project. There you may find the code necessary to do that.

image.png

HTH.
by Vasyl-Tracker Dev Team
Wed Jan 24, 2024 12:32 am
Forum: PDF-XChange Editor SDK
Topic: (Default) OCR in SDK, .dat files in Tesseract folder -> .traineddata SOLVED
Replies: 9
Views: 637

Re: (Default) OCR in SDK, .dat files in Tesseract folder -> .traineddata SOLVED

Its occured because we updated the Tesseract engine. The new Tesseract uses the *.traineddata files instead of the older *.dat. And seems both formats are incompatible, unfortunately. And yes, both x86 and x64 use the same lang-files as well.
by Vasyl-Tracker Dev Team
Mon Jan 22, 2024 10:14 pm
Forum: PDF-XChange Editor
Topic: Comments etc. SOLVED
Replies: 8
Views: 697

Re: Comments etc. SOLVED

Hi Jürgen.

The issue with grey popups for the colored comments on pages - it will be solved in the upcoming build. Thanks for the report, and sorry for the inconvenience.

Cheers.
by Vasyl-Tracker Dev Team
Mon Jan 22, 2024 10:02 pm
Forum: PDF-XChange Editor SDK
Topic: Enabling the Document Recovery in the SDK
Replies: 15
Views: 4337

Re: Enabling the Document Recovery in the SDK

RMan wrote: But upon closing and reopening our program it does not list the recovery documents even though they are still listed in the folder.
It will be fixed in the upcoming 385 build.
by Vasyl-Tracker Dev Team
Tue Jan 09, 2024 10:07 pm
Forum: PDF-XChange Editor
Topic: Viewing PDFs in IE mode not working with v10.2.0.384
Replies: 2
Views: 287

Re: Viewing PDFs in IE mode not working with v10.2.0.384

Hi Nobbi184.

This issue will be fixed soon, in the upcoming build. Please wait. Sorry for this trouble... :(

Cheers.
by Vasyl-Tracker Dev Team
Fri Dec 15, 2023 5:44 am
Forum: PDF-XChange Editor SDK
Topic: Command execution difference: click item vs enter key on item in Quick Launch list SOLVED
Replies: 4
Views: 13909

Re: Command execution difference: click item vs enter key on item in Quick Launch list SOLVED

We found the reason of the trouble. It occurs because OnNotify(Exec) is called inside from the internal EventMonitor installed by QuickLaunch control for itself. And in this specific context all new registered monitors will not get any event until runtime will exit from that context. We will fix tha...
by Vasyl-Tracker Dev Team
Sat Dec 09, 2023 4:56 am
Forum: PDF-XChange Editor SDK
Topic: Params for "conv.imp.RTF".Convert() SOLVED
Replies: 5
Views: 12945

Re: Params for "conv.imp.RTF".Convert() SOLVED

The correct ID of this converter is "conv.imp.rtf" (note: all our IDs are case sensitive). And this converter has no parameters at the moment.
MS Word isn't required for this converter.
by Vasyl-Tracker Dev Team
Sat Dec 09, 2023 1:58 am
Forum: PDF-XChange Editor
Topic: Changing the text format of text comments in popup notes does not always reflect to the tooltips text format SOLVED
Replies: 9
Views: 8240

Re: Changing the text format of text comments in popup notes does not always reflect to the tooltips text format SOLVED

Hi rakunavi. About the ticket #6638. There seems to be some misunderstanding here. You've changed the text format, but the focus is still inside the text box. This means that text editing has not yet been completed, and such changes have not been applied to the comment. Even if you hit the 'Make Def...
by Vasyl-Tracker Dev Team
Fri Nov 24, 2023 1:22 am
Forum: PDF-XChange Editor SDK
Topic: Confirmation / more info for IAUX_Inst::IsUserBreak SOLVED
Replies: 3
Views: 10821

Re: Confirmation / more info for IAUX_Inst::IsUserBreak SOLVED

This function checks some different variations of HRESULT-codes that mean the same 'user-break' case. Briefly it is: HRESULT x = ... if (x < 0) { int facility = (((DWORD)(x) >> 16) & 0x1ff); int ecode = ((x) & 0x0ffff); if (ecode == ERROR_CANCELLED) { if ((facility == 511) && (x &...
by Vasyl-Tracker Dev Team
Fri Nov 24, 2023 1:07 am
Forum: PDF-Tools SDK (all our PDF DLL Libraries)
Topic: XCPro40.dll
Replies: 7
Views: 11880

Re: XCPro40.dll

Hi tgdonovan.

We will check it and let you know about the result.

Cheers.
by Vasyl-Tracker Dev Team
Tue Nov 14, 2023 7:34 pm
Forum: PDF-XChange Editor SDK
Topic: .Net 7 WinForms - process hangs after closing the app SOLVED
Replies: 3
Views: 10017

Re: .Net 7 WinForms - process hangs after closing the app SOLVED

Hi Zarko. We investigated it and found that under Net7 our ActiveX control doesn't receive the destroy-event from the system when the system destroys the control's window. Which is quite strange and critical for the control because it finalizes itself at this event. In the new upcoming build we adde...
by Vasyl-Tracker Dev Team
Fri Oct 27, 2023 12:11 am
Forum: PDF-XChange Editor SDK
Topic: Number of Tab Groups in DocumentViewsArea ? SOLVED
Replies: 6
Views: 8161

Re: Number of Tab Groups in DocumentViewsArea ? SOLVED

Hi Zarko. Here is the way: private void GetTabGroupsCount(IUIX_LayoutItem parent, ref int tabGroupsCount) { uint count = parent.Count; for (uint i = 0; i < count; i++) { IUIX_LayoutItem kid = parent[i]; int st = kid.Style; if ((st & (int)UIX_LayoutItemStyleFlags.UIX_LayoutItemStyle_Splitted) == ...
by Vasyl-Tracker Dev Team
Thu Oct 26, 2023 10:54 pm
Forum: PDF-XChange Core API SDK
Topic: IPXC_AnnotData_Markup and Tooltip
Replies: 11
Views: 11755

Re: IPXC_AnnotData_Markup and Tooltip

Is there a way that only FTData.Subject is shown as tooltip? Unfortunately, there is no way to do it at the moment. But in the next build you will be able to use new parameter: /* DispShowSubj = 0x01, DispShowAuthor = 0x02, DispShowDate = 0x04, DispShowTime = 0x08, DispShowContent = 0x10, */ pdfCtl...
by Vasyl-Tracker Dev Team
Thu Oct 19, 2023 6:58 pm
Forum: PDF-XChange Editor SDK
Topic: Change default stamp path
Replies: 7
Views: 3031

Re: Change default stamp path

Hi Tom.

The GroupPolicy-value in the registry:
HKLM\Software\Policies\Tracker Software\PDFXEditor\3.0\Misc: t.SharedStampsFolder

- it works only for EndUser-Editor app, not for the Editor-SDK. With SDK you need to use the SetStdFolder-method instead.

Cheers.
by Vasyl-Tracker Dev Team
Tue Oct 10, 2023 11:31 pm
Forum: PDF-XChange Editor
Topic: OCR settings and firewall
Replies: 8
Views: 1218

Re: OCR settings and firewall

Hi pleino.

You need to allow all urls matching the following pattern:

https://www.pdf-xchange.com/resource-updater/*

HTH
by Vasyl-Tracker Dev Team
Wed Oct 04, 2023 2:23 am
Forum: PDF-XChange Editor SDK
Topic: Enabling the Document Recovery in the SDK
Replies: 15
Views: 4337

Re: Enabling the Document Recovery in the SDK

You are right, unfortunately :(. There is kind of a bug that breaks the Recovery feature in SDK mode. We are now investigating it and will try to fix it in the next build...
by Vasyl-Tracker Dev Team
Tue Oct 03, 2023 8:57 pm
Forum: PDF-XChange Editor SDK
Topic: IUIX_Inst::SetAppIcon vs DlgProgress SOLVED
Replies: 3
Views: 8727

Re: IUIX_Inst::SetAppIcon vs DlgProgress SOLVED

Hi žarko. Yes, there is a kind of bug. Because when you call the IPXV_Inst::Init - it creates the progress-dialog and sets the Editor's icon to it. Then you call the IUIX_Inst::SetAppIcon and it changes the app icon globally, but this does not affect already created popup windows (i.e. such progress...
by Vasyl-Tracker Dev Team
Fri Sep 29, 2023 4:57 pm
Forum: PDF-XChange Editor SDK
Topic: Disable Quick Access Command Bar SOLVED
Replies: 3
Views: 8247

Re: Disable Quick Access Command Bar SOLVED

Hi Andreas. I suppose you tried to use that code when ClassicToolbars mode was enabled (by default). But that mode has no "cmdbar.quickAccess" toolbar. This toolbar is present only in RibbonUI mode: image.png In our FullDemo app look to cmdBarsTree_AfterCheck - this event-handler toggless ...
by Vasyl-Tracker Dev Team
Wed Sep 20, 2023 5:58 pm
Forum: PDF-XChange Editor
Topic: custom button with individual image
Replies: 1
Views: 669

Re: custom button with individual image

Hi Peter. The standard way is described there: https://opensource.adobe.com/dc-acrobat-sdk-docs/library/jsapiref/JS_API_AcroJS.html#addtoolbutton - unfortunately, that Adobe's manual is organized ugly so you need to search "addToolButton" on that web-page to reach the description and see t...
by Vasyl-Tracker Dev Team
Wed Sep 20, 2023 2:41 am
Forum: PDF-XChange Editor
Topic: After upgrading to 10.1.0.380 Unable to open certain TIFF files
Replies: 2
Views: 1659

Re: After upgrading to 10.1.0.380 Unable to open certain TIFF files

That should be fixed in the new 10.1.1.381, which is ready for download...
by Vasyl-Tracker Dev Team
Tue Sep 19, 2023 10:59 pm
Forum: PDF-XChange Editor SDK
Topic: How to add text to an xform
Replies: 3
Views: 2335

Re: How to add text to an xform

Hi Prasantha. You may use the following way: IPXC_Document doc; ... IPXC_ContentCreator cc = doc.CreateContentCreator(); IPXC_Font fnt = doc.CreateNewFont("Arial", PXC_CreateFontFlags.CreateFont_Italic, 600); // heavy italic cc.SetFont(fnt); cc.SetFontSize(12.0); // 12 pt cc.SetFillColor(R...
by Vasyl-Tracker Dev Team
Tue Sep 19, 2023 1:39 am
Forum: PDF-XChange Editor SDK
Topic: How to delete specific bates numbsers?
Replies: 1
Views: 2092

Re: How to delete specific bates numbsers?

Hi Prasantha. There is a code snippet that shows how to get info about watermarks: https://forum.pdf-xchange.com/viewtopic.php?t=40633 You may use it to find the value for BatesNumberingID. Look to the sample document to its actual pdf-structure just after adding the bates numbers: image.png - so, i...
by Vasyl-Tracker Dev Team
Wed Sep 13, 2023 4:42 pm
Forum: PDF-XChange Editor
Topic: WARNING new update 368→370 [glitch] UI is reset
Replies: 11
Views: 1723

Re: WARNING new update 368→370 [glitch] UI is reset

It might be because the toolbar has changed? Could that be possible? That the user interface is reset if you add a new shortcut button for example that is in the default UI? No, that cannot be a reason of your trouble. Our standard toolbars can be customized by the user and at the same time we can ...
by Vasyl-Tracker Dev Team
Tue Sep 12, 2023 8:12 pm
Forum: PDF-XChange Editor
Topic: WARNING new update 368→370 [glitch] UI is reset
Replies: 11
Views: 1723

Re: WARNING new update 368→370 [glitch] UI is reset

We can't reproduce such issue on our side... Can you provide that settings file for investigation? To support@pdf-xchange.com for example... And please be sure you haven't installed a utility like 'registry-cleaner'. Such app may periodically remove some data from your registry which is related to o...
by Vasyl-Tracker Dev Team
Tue Sep 12, 2023 6:54 pm
Forum: PDF-XChange Editor
Topic: Comments in Acrobat are garbled when comments using Japanese font are added first in PDF-XChange Editor.
Replies: 15
Views: 2239

Re: Comments in Acrobat are garbled when comments using Japanese font are added first in PDF-XChange Editor.

Hi rakunavi.

We will try to fix this bad issue in the upcoming release (soon). Thanks for your incredible patience, and really sorry for that...

Cheers.
by Vasyl-Tracker Dev Team
Fri Sep 08, 2023 10:00 pm
Forum: PDF-XChange Editor SDK
Topic: IsolatedMainFrames vs Search In Folder and opening search result documents SOLVED
Replies: 3
Views: 9094

Re: IsolatedMainFrames vs Search In Folder and opening search result documents SOLVED

Hi Zarko.

There is a bug definitely. We will try to fix it in the upcoming build.

Cheers.
by Vasyl-Tracker Dev Team
Fri Sep 08, 2023 8:11 pm
Forum: PDF-XChange Editor SDK
Topic: cb.where items creation in IPXV_SearchView SOLVED
Replies: 5
Views: 9652

Re: cb.where items creation in IPXV_SearchView SOLVED

It is hard to say now what was changed exactly there that caused such changes in behavior. Because we are constantly improving/fixing the code around the app. But I can confirm that at the moment this combo reloading itself on these events without taking into account the frames isolation.
by Vasyl-Tracker Dev Team
Fri Sep 08, 2023 1:09 am
Forum: PDF-XChange Editor
Topic: Problem with over-sized PDFs
Replies: 28
Views: 3856

Re: Problem with over-sized PDFs

Hi Ralf.

Good news for you - in the upcoming build we will increase the page size limit from 200 in to 300 in. It will immediately solve your problem with 6m wide pages. And a little later, we plan to increase it by 10 or more times.

Cheers.
by Vasyl-Tracker Dev Team
Thu Sep 07, 2023 8:22 pm
Forum: PDF-XChange Editor
Topic: Clicking with the typewriter or text box tool temporarily registers a ghost comment that can't be deleted SOLVED
Replies: 3
Views: 2091

Re: Clicking with the typewriter or text box tool temporarily registers a ghost comment that can't be deleted SOLVED

Hi rakunavi. We will fix that issue soon. Also: With a mouse, when the click button is pressed, the force of the button press is transmitted to the mouse itself, causing the mouse position to move slightly, which may be judged as an unintentional drag. It would be easier to reproduce this with an in...