Search found 2417 matches
- Fri Jan 24, 2025 12:38 am
- Forum: PDF-XChange Editor SDK
- Topic: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
- Replies: 6
- Views: 149
Re: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
Perhaps we found the reason for the trouble and fixed it. The fix will be in the upcoming build.
- Thu Jan 23, 2025 11:12 pm
- Forum: PDF-XChange Editor SDK
- Topic: Undock / dock a pane from code (+ change size) SOLVED
- Replies: 3
- Views: 445
Re: Undock / dock a pane from code (+ change size) SOLVED
1. Check if a pane is docked. (note: interested only in history, recover and alike - so not specific document related panes). IUXC_LayoutItem getObjLI(IUXC_Obj o) { IUXC_LayoutItem LI; do { if (o == null) break; LI = o.LI; if (LI != null) break; o = o.Parent; } while (true); return LI; } IUXC_Layou...
- Thu Jan 23, 2025 10:27 pm
- Forum: PDF-XChange Editor SDK
- Topic: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
- Replies: 6
- Views: 149
Re: v10.5.0.393 - problems in IPXC_Document.WriteToFile if using custom IProgessMon SOLVED
I checked the code around the WriteToFile and cannot see any potential reason for such problem. Can you provide a simple example to reproduce it on our side?
- Thu Jan 23, 2025 6:02 am
- Forum: PDF-XChange Editor
- Topic: JavaScript to save all documents (tabs) in window to one location
- Replies: 4
- Views: 383
Re: JavaScript to save all documents (tabs) in window to one location
It appears you are using an older version, as the current version shows which program locked the file and caused the AccessDenied error...
- Thu Jan 23, 2025 5:50 am
- Forum: PDF-XChange Editor
- Topic: JavaScript to save all documents (tabs) in window to one location
- Replies: 4
- Views: 383
Re: JavaScript to save all documents (tabs) in window to one location
You see, as previously mentioned (in other threads), sometimes "save all" works for "unsaved" opened documents, other times it doesn't, so this would really save some time. Do you mean this feature: image.png ? Does this one sometimes not work? If yes - can you explain how to re...
- Thu Jan 23, 2025 12:59 am
- Forum: PDF-XChange Editor
- Topic: [javascript] Doc.setPageBoxes() weird behavior? SOLVED
- Replies: 2
- Views: 196
Re: [javascript] Doc.setPageBoxes() weird behavior? SOLVED
Hi Mathew.
All problems described will be fixed in the upcoming build. Thanks for the report.
Cheers.
All problems described will be fixed in the upcoming build. Thanks for the report.
Cheers.
- Wed Jan 22, 2025 3:21 am
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools SOLVED
- Replies: 20
- Views: 1455
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
Currently: - if you add cmd by JS with specified shortcut and then user customized shortcut for that cmd - the user's shortcut will be used then. - but exists another problem: again, you added the cmd by JS with shortcut, let's say "Ctrl+Shift+A" and then later the user specified *the same...
- Wed Jan 22, 2025 2:54 am
- Forum: PDF-XChange Editor
- Topic: Bookmark colors are wrong in latest versions
- Replies: 10
- Views: 667
Re: Bookmark colors are wrong in latest versions
Soon we will add one option to solve this issue:
in context menu of Bookmarks pane...
in context menu of Bookmarks pane...
- Wed Jan 15, 2025 6:44 pm
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools SOLVED
- Replies: 20
- Views: 1455
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
JFYI: in Build 10.5.0.393 we added this:
So now you can specify the shortcut to JS-command directly in the script.
Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI, with the custom shortcuts specified.
So now you can specify the shortcut to JS-command directly in the script.
Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI, with the custom shortcuts specified.
- Tue Dec 10, 2024 3:26 am
- Forum: PDF-XChange Editor SDK
- Topic: FitR destination bottom vs top SOLVED
- Replies: 5
- Views: 752
Re: FitR destination bottom vs top SOLVED
There is a bug definitely...
Thanks for the report.
Thanks for the report.
- Mon Dec 09, 2024 8:56 pm
- Forum: PDF-XChange Editor SDK
- Topic: Clarification on Embedding Editor in a Custom Application with Interaction
- Replies: 3
- Views: 546
Re: Clarification on Embedding Editor in a Custom Application with Interaction
Hi jucass89. Drag-and-Drop Interaction: Users should be able to drag text snippets from the custom window and drop them into the PDF within the Editor. By default our Editor ActiveX Control prevents the dropping files on itself. But you can allow it, for example, in our FullDemo app, in the construc...
- Thu Dec 05, 2024 1:19 am
- Forum: PDF-XChange Editor SDK
- Topic: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
- Replies: 6
- Views: 1154
Re: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
cmd.search.start - isn't present on toolbars/menus. But using customize you may assign shortcut to it and/or put it on any toobar.
cmd.searchView.results.clear is used inside the Search pane: in context menu of the window with search results and in the dropdown menu of the Options button.
cmd.searchView.results.clear is used inside the Search pane: in context menu of the window with search results and in the dropdown menu of the Options button.
- Fri Nov 22, 2024 2:50 am
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools SOLVED
- Replies: 20
- Views: 1455
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
We may think about it... Looks like we can allow end-user customization for menu/toolbar items added via AppLevel scripts, but not for DocLevel scripts. So user will be able to reorder them on toolbars/menus and set custom shortcuts.
- Thu Nov 21, 2024 12:57 am
- Forum: PDF-XChange Editor
- Topic: [FR] Keyboard shortcuts for javascript tools SOLVED
- Replies: 20
- Views: 1455
Re: [FR] Keyboard shortcuts for javascript tools SOLVED
Hi Mattew. I think the new cHotkey -parameter for app.addToolButton/app.addMenuItem will solve this problem, when it is available. And about saving menu/toolbar items added by JS between sessions: we do not save them currently. We only save changes the end-user makes, not by script or 3rd-party dev ...
- Wed Nov 20, 2024 6:13 am
- Forum: PDF-XChange Editor SDK
- Topic: How to "pause" visibility of DlgProgress? SOLVED
- Replies: 7
- Views: 1542
Re: How to "pause" visibility of DlgProgress? SOLVED
Hi Zarko. Theoretically, the possible way is: int id_DlgProgress = Inst.Str2ID("DlgProgress"); bool bNeedHideProgressDlg = false; .... OnEventMonitor(IUIX_Obj target, IUIX_Event* event) { if (bNeedHideProgressDlg) { if (event.Code == e_Visible) { if ((target.ID == id_DlgProgress) &&...
- Wed Nov 13, 2024 9:22 pm
- Forum: PDF-XChange Editor SDK
- Topic: How to "pause" visibility of DlgProgress? SOLVED
- Replies: 7
- Views: 1542
Re: How to "pause" visibility of DlgProgress? SOLVED
Our custom UI-event codes start from this value: UIX_EventCodes.e_First = (0x400 + 5432) - all codes less than this value are codes of standard windows messages. So, when your 799 is a decimal number, not in the hex form - it corresponds to WM_DWMNCRENDERINGCHANGED=0x031F, according to the WinUser.h...
- Mon Oct 28, 2024 11:02 pm
- Forum: PDF-XChange Editor
- Topic: Printer interface
- Replies: 6
- Views: 425
Re: Printer interface
Hi, danprentice. Just for testing - try to use the app: "c:\Program Files\Tracker Software\PDF Editor\PDFXEdit_NoPrintIsolation.exe" It is the same PDF-Change Editor application, except that it does the printing without a special sandbox, unlike the regular application. Note: before trying...
- Tue Oct 08, 2024 7:00 am
- Forum: PDF-XChange Editor
- Topic: Command to open a PDF in a new instance of PDF-XChange
- Replies: 20
- Views: 4078
Re: Command to open a PDF in a new instance of PDF-XChange
Hi All. In the new upcoming build you will be able to use a new command to open a blank frame window:
- Sat Oct 05, 2024 5:08 am
- Forum: PDF-XChange Editor
- Topic: Position of JavaScript menu added
- Replies: 4
- Views: 666
Re: Position of JavaScript menu added
In addition, to all JavaScript users: since 388 build we improved/extended the app.addMenuItem(), app.addSubMenu() and app.addToolButton() features. Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI. The result of this script is: JSAddRibbonMenu.pn...
- Sat Oct 05, 2024 1:10 am
- Forum: PDF-XChange Editor
- Topic: Cant' drag to select multiple parent bookmarks from left edge SOLVED
- Replies: 6
- Views: 1112
Re: Cant' drag to select multiple parent bookmarks from left edge SOLVED
Hi Loki.
Can you reproduce it with the latest 389 build. We cannot reproduce it using mouse, stylus or finger.
Cheers.
Can you reproduce it with the latest 389 build. We cannot reproduce it using mouse, stylus or finger.
Cheers.
- Fri Oct 04, 2024 6:42 pm
- Forum: PDF-XChange Editor
- Topic: [FR] Overlay pages in color
- Replies: 9
- Views: 2691
Re: [FR] Overlay pages in color
Hi Sir_Stig.
Cheers.
Can you explain this a little? Why do you need this as an engineer? Why only black->red? What about other colors?built in editor to default palette swap black to red
Cheers.
- Wed Oct 02, 2024 10:04 pm
- Forum: PDF-XChange Editor SDK
- Topic: Custom handling "Save [search] Results to a File"... SOLVED
- Replies: 4
- Views: 1232
Re: Custom handling "Save [search] Results to a File"... SOLVED
May be too late, but... My idea for the moment, a complex one, would be to implement IPXV_SearchCallback and inject into every op_search.Options.Callback and then store the results (from OnNewEntry) into some private structure and keep it alive until next search... but I would then need help with a ...
- Wed Oct 02, 2024 9:29 pm
- Forum: PDF-XChange Editor SDK
- Topic: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
- Replies: 6
- Views: 1154
Re: Custom handling cmd.search.start vs (e.g.) cmd.searchView.results.clear SOLVED
btn.startStop - is just a control, a simple button on the form. Why should it send the same notification in the same way as when you click the menu/toolbar item (cmd.search.start)? Items on toolbars/menus and buttons on forms are too different UI-substances to have identical notification-mechanism. ...
- Wed Oct 02, 2024 8:55 pm
- Forum: PDF-XChange Editor SDK
- Topic: e.searchView.newResults ? SOLVED
- Replies: 3
- Views: 1111
Re: e.searchView.newResults ? SOLVED
Hi Zarko. e.searchView.newResults - notification about changes(adding new items, removing all) in search-results window inside the Search pane. pFrom: IPXV_SearchView nParam1: the internal unique ID of collection of search-results. Eash new search creates new collection with new ID; Param1==-1 - jus...
- Wed Oct 02, 2024 8:16 pm
- Forum: PDF-XChange Editor SDK
- Topic: pFrom in e.operBeforeExecute / op.search ? What executed op.search? SOLVED
- Replies: 4
- Views: 2129
Re: pFrom in e.operBeforeExecute / op.search ? What executed op.search? SOLVED
For events e.operBeforeExecute/e.operExecuted - the pFrom always points to the IOperation that will_be/was executed.
- Wed Oct 02, 2024 12:50 am
- Forum: PDF-XChange Editor
- Topic: 389 Crashiness?
- Replies: 31
- Views: 1532
Re: 389 Crashiness?
Hi PHK.
Can you provide us a sequence of steps that may increase the chance of reproducing that crash?
Thanks.
Can you provide us a sequence of steps that may increase the chance of reproducing that crash?
Thanks.
- Thu Sep 26, 2024 9:11 pm
- Forum: PDF-XChange Editor
- Topic: Import bookmark - Can't go to page destination
- Replies: 28
- Views: 4467
Re: Import bookmark - Can't go to page destination
It occurs in the latest 389 build, correct?
- Thu Sep 26, 2024 5:19 pm
- Forum: Touchscreen Devices
- Topic: Select Text Tool - Palm rejection issue SOLVED
- Replies: 21
- Views: 3102
Re: Select Text Tool - Palm rejection issue SOLVED
In the next build we will reduce the chance to get unintentional zoom when 2-finger scroll is started.Loki99 wrote: Scroll by two fingers changes page zoom unintentionally sometimes
- Thu Sep 26, 2024 12:03 am
- Forum: Touchscreen Devices
- Topic: Select Text Tool - Palm rejection issue SOLVED
- Replies: 21
- Views: 3102
Re: Select Text Tool - Palm rejection issue SOLVED
My issue here is that using the Select Text tool for drag to select a text area with stylus while scrolling the page with finger on touchscreen isn't possible anymore in build 389. Hold on... What if user has touch screen and has NO stylus and want to select text? So he naturally enabled the Select...
- Wed Sep 25, 2024 8:47 pm
- Forum: Touchscreen Devices
- Topic: Select Text Tool - Palm rejection issue SOLVED
- Replies: 21
- Views: 3102
Re: Select Text Tool - Palm rejection issue SOLVED
I see you have disabled 'Allow draw by finger touch' option. This is causing an issue, and it looks like a bug. We will try to solve it in the next build.
As a workaround, you may turn that option back (turned ON by default).
As a workaround, you may turn that option back (turned ON by default).
- Tue Sep 24, 2024 10:42 pm
- Forum: PDF-XChange Editor
- Topic: Current Tool De-/Selection Event or Property in Javascript
- Replies: 3
- Views: 549
Re: Current Tool De-/Selection Event or Property in Javascript
Hi Sebastian.
I'm afraid, but it seems there is no way to do it via JS only.
I guess it requires a plugin for the Editor.
Cheers.
I'm afraid, but it seems there is no way to do it via JS only.
I guess it requires a plugin for the Editor.
Cheers.
- Tue Sep 24, 2024 9:30 pm
- Forum: PDF-XChange Editor SDK
- Topic: Error [PXVLib]: Wrong thread
- Replies: 1
- Views: 2039
Re: Error [PXVLib]: Wrong thread
Hi khho.
Can you provide a simple example to reproduce that issue on our side?
Cheers.
Can you provide a simple example to reproduce that issue on our side?
Cheers.
- Tue Sep 24, 2024 8:50 pm
- Forum: PDF-XChange Editor
- Topic: Import bookmark - Can't go to page destination
- Replies: 28
- Views: 4467
Re: Import bookmark - Can't go to page destination
As a temporary solution, you can use DnD instead of Copy/Paste, especially for copying bookmarks between different documents.
It seems to work as you want...
It seems to work as you want...
- Tue Sep 24, 2024 2:27 am
- Forum: PDF-XChange Editor
- Topic: Import bookmark - Can't go to page destination
- Replies: 28
- Views: 4467
Re: Import bookmark - Can't go to page destination
We have fixed this bug in an upcoming build. Sorry for the inconvenience...
- Tue Sep 24, 2024 1:55 am
- Forum: PDF-XChange Editor
- Topic: Changing Font and Highlight colors of selected text
- Replies: 5
- Views: 2687
Re: Changing Font and Highlight colors of selected text
In the upcoming build, we made some improvements to increase the visibility of selected text on pages with dark backgrounds and light content.
- Tue Sep 17, 2024 2:58 am
- Forum: PDF-XChange Editor
- Topic: Crashing during OCR
- Replies: 7
- Views: 1949
Re: Crashing during OCR
Thanks for the information. Your document allowed us to reproduce this rare crash on our side (on page 6).
This issue will be fixed in the upcoming build, which will be very soon.
This issue will be fixed in the upcoming build, which will be very soon.
- Mon Sep 16, 2024 8:07 pm
- Forum: PDF-XChange Editor
- Topic: When opening a specific file in build 388 in a specific environment and opening Resize Pages dialog, application crashes SOLVED
- Replies: 5
- Views: 1970
Re: When opening a specific file in build 388 in a specific environment and opening Resize Pages dialog, application cra SOLVED
Hi All.
This crash will be fixed in the upcoming build, pretty soon.
Sorry for inconvenience...
This crash will be fixed in the upcoming build, pretty soon.
Sorry for inconvenience...
- Fri Sep 13, 2024 7:24 pm
- Forum: PDF-XChange Editor SDK
- Topic: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
- Replies: 7
- Views: 2930
Re: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
I created the blank doc with 16194 pages and then imported there your xcbkm file and tested it. Unfortunately I cannot reproduce any problem with such doc, using the latest build. I believe it is document related issue OR the older build you using - has a bug. Can you reproduce such problem with my ...
- Wed Sep 11, 2024 10:54 pm
- Forum: PDF-XChange Editor
- Topic: Mathew's PDF-XCE JavaScripts SOLVED
- Replies: 13
- Views: 8558
Re: Mathew's PDF-XCE JavaScripts SOLVED
Hi Guys. To all JavaScript users: in the latest build we improved/extended the app.addMenuItem(), app.addSubMenu() and app.addToolButton() features. Here is sample script that shows how to add custom Tabs/Groups/Menus/Buttons to the Ribbon/Classic UI. The result of this script is: image.png The feat...
- Thu Sep 05, 2024 6:48 pm
- Forum: PDF-XChange Editor SDK
- Topic: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
- Replies: 7
- Views: 2930
Re: cannot open a pdf file "Error [PXCLib]: Invalid value or value type."
Can you provide the file that you are experiencing a problem with? Or, at least, can you extract all bookmarks from that file to *.xcbkm file (via menu in Bookmarks pane) and provide it to us for investigation? Because it should not be a problem for our SDK to deal with the huge amount of bookmarks....
- Thu Sep 05, 2024 6:15 pm
- Forum: PDF-XChange Editor SDK
- Topic: How to retrieve the closing document
- Replies: 5
- Views: 2443
Re: How to retrieve the closing document
In your implementation of IEventHandler::OnEvent you need to use the pFrom argument. For e.document.beforeClose event you need to cast it to the IPXV_Document type...
- Mon Sep 02, 2024 7:27 pm
- Forum: PDF-XChange Editor SDK
- Topic: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
- Replies: 5
- Views: 4180
Re: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
Also you may use the proposed solution from viewtopic.php?t=43617 (about Doc.Info[...] indexed property)
- Mon Sep 02, 2024 7:23 pm
- Forum: PDF-XChange Core API SDK
- Topic: Maintain PDF properties by VBA
- Replies: 2
- Views: 7373
Re: Maintain PDF properties by VBA
Hi Roland.
With our Core API SDK you may try to use this way, to read/write the doc's props:
https://sdkhelp.pdf-xchange.com/view/PX ... ument_Info
HTH.
With our Core API SDK you may try to use this way, to read/write the doc's props:
https://sdkhelp.pdf-xchange.com/view/PX ... ument_Info
HTH.
- Wed Jul 17, 2024 2:13 am
- Forum: PDF-XChange Editor SDK
- Topic: Error [Pdf Structure Library]: Invalid object structure.
- Replies: 34
- Views: 6116
Re: Error [Pdf Structure Library]: Invalid object structure.
We couldn't reproduce your trouble on our side. We tested the latest 387 build in the new WinForm app, and everything looks good. There is attached such WinForm project: TestWinFormsApp.zip Please be sure that the latest version of PDFXEditCore.x64.dll module is registered in your system (387 build)...
- Thu Jul 11, 2024 5:14 am
- Forum: PDF-XChange Editor
- Topic: Display annotations in Content panel
- Replies: 3
- Views: 678
Re: Display annotations in Content panel
Hi Loki
In the near future we will add the tool to add/edit Screen comments.
Cheers.
In the near future we will add the tool to add/edit Screen comments.
Cheers.
- Wed Jul 03, 2024 4:48 am
- Forum: PDF-XChange Editor SDK
- Topic: Error [Pdf Structure Library]: Invalid object structure.
- Replies: 34
- Views: 6116
Re: Error [Pdf Structure Library]: Invalid object structure.
Hi khho, The interop-dlls aren't part of our SDK. They are just auxiliary components made by Visual Studio when we added the Editor ActiveX control to the .NET Example projects and build them. Your Visual Studio IDE should be able to create own interops in moment when you build your project with our...
- Fri Jun 21, 2024 12:49 am
- Forum: PDF-XChange Editor
- Topic: [javascript bug] app.addSubMenu() in ribbon UI SOLVED
- Replies: 6
- Views: 851
Re: [javascript bug] app.addSubMenu() in ribbon UI SOLVED
You are right, unfortunately... But there is controversial case because in the Ribbon UI we haven't a 'Tools' menu. We can restore the previous behavior but I believe there can be a better way. For example we can implement this: app.addSubMenu({ cName: "newTools", cUser: "New Sub-men...
- Thu Jun 20, 2024 6:41 pm
- Forum: PDF-XChange Editor
- Topic: When searching for text, don't open matching comments automatically
- Replies: 2
- Views: 397
Re: When searching for text, don't open matching comments automatically
Hi David. In the next release we will change it to the following behavior: 1. when the user changes the selection inside the list with search results using just navigation keys or by mouse clicking - it will not open the comment pop-ups even the text found inside the popup or reply. 2. but when the ...
- Thu Jun 20, 2024 5:39 pm
- Forum: PDF-XChange Editor SDK
- Topic: Error [Pdf Structure Library]: Invalid object structure.
- Replies: 34
- Views: 6116
Re: Error [Pdf Structure Library]: Invalid object structure.
We fixed this issue in 387. And yes, we do not include sdk-fixes in our end-user product build history.
- Tue Jun 18, 2024 4:47 am
- Forum: PDF-XChange Editor
- Topic: Sort Comments by Date/Time
- Replies: 10
- Views: 636
Re: Sort Comments by Date/Time
The new 387 build is available now.