Search found 2200 matches
- Sat Aug 13, 2022 4:15 am
- Forum: PDF-XChange Editor SDK
- Topic: Request: op.search to process multiple IAFS_Name entries in Input SOLVED
- Replies: 2
- Views: 9
Re: Request: op.search to process multiple IAFS_Name entries in Input SOLVED
Good point, thanks. We may add that possibility in the future.
- Sat Aug 13, 2022 4:12 am
- Forum: PDF-XChange Editor SDK
- Topic: [v362] Commands in Bars display Short Title SOLVED
- Replies: 2
- Views: 10
Re: [v362] Commands in Bars display Short Title SOLVED
Because it is an issue and will be fixed in the upcoming build...Why would ShortTitle for "cmd.view.comments" be longer than Title?
- Sat Aug 13, 2022 4:07 am
- Forum: PDF-XChange Editor SDK
- Topic: To fix the blured Icon
- Replies: 1
- Views: 6
Re: To fix the blured Icon
Please try 24x24 size for icons. Editor uses that size.
- Sat Aug 13, 2022 4:04 am
- Forum: PDF-XChange Editor SDK
- Topic: To fixed the space between tool bar icon in different machines
- Replies: 3
- Views: 30
Re: To fixed the space between tool bar icon in different machines
Seems you using 3rd-party implementation of Ribbon UI (XtremeCommandBars?). And I don't know how you use Editor's icons for that...
Can you clarify this moment?
Can you clarify this moment?
- Sat Aug 13, 2022 3:50 am
- Forum: PDF-XChange Editor SDK
- Topic: [v362] Trying to remove 'In All Docs from this Window' from IPXV_SearchView - unexpected results SOLVED
- Replies: 3
- Views: 17
Re: [v362] Trying to remove 'In All Docs from this Window' from IPXV_SearchView - unexpected results SOLVED
In future builds we will solve that issues with this combo, especially in the case when IsolatedMainFrames==true is.
- Sat Aug 13, 2022 3:44 am
- Forum: PDF-XChange Editor SDK
- Topic: [v362] General.IsolatedMainFrames vs SearchView.'In All Docs from this Window' SOLVED
- Replies: 2
- Views: 13
Re: [v362] General.IsolatedMainFrames vs SearchView.'In All Docs from this Window' SOLVED
Hi Zarko.
We will fix that incompatibility in the future, probably by removing the 'In All Docs from this Window' when General.IsolatedMainFrames==true
Cheers.
We will fix that incompatibility in the future, probably by removing the 'In All Docs from this Window' when General.IsolatedMainFrames==true
Cheers.
- Sat Aug 13, 2022 3:40 am
- Forum: PDF-XChange Editor SDK
- Topic: DarkMode
- Replies: 12
- Views: 56
Re: DarkMode
Hi Jeff. In C#, to change theme: { PDFXEdit.ICabNode pr = pdfCtl.Inst.Settings["CustomUI"]; pr["Theme"].v = "Black"; // "DarkGray", "White", "Black" // "" - it inherits system's UI style } pdfCtl.Inst.FireAppPrefsChanged(PDFXEdit....
- Sat Aug 13, 2022 2:58 am
- Forum: PDF-XChange Editor SDK
- Topic: How to delete annotation without confirmation message
- Replies: 7
- Views: 69
Re: How to delete annotation without confirmation message
We also cannot reproduce it. Seems you are using too old version of SDK that has this warning. Please try the latest version(362 build)...
- Sat Aug 13, 2022 2:52 am
- Forum: PDF-XChange Editor SDK
- Topic: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
- Replies: 2
- Views: 9
Re: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
Its flag for the case when PDF is just created in memory from any non-pdf file. For example when it is created from text/docx/xlsx. etc
- Thu Aug 11, 2022 8:11 pm
- Forum: PDF-XChange Editor
- Topic: pdfxedit 's link tools doesn't allow UNC paths, UNC paths prevent OK to be clicked.
- Replies: 7
- Views: 266
Re: pdfxedit 's link tools doesn't allow UNC paths, UNC paths prevent OK to be clicked.
Hi ccchan.
This issue will be fixed in the new upcoming build.
Cheers.
This issue will be fixed in the new upcoming build.
Cheers.
- Wed Aug 10, 2022 7:07 pm
- Forum: PDF-XChange Editor
- Topic: Copy/paste comments places items incorrectly (v9.4.362.0)
- Replies: 3
- Views: 66
Re: Copy/paste comments places items incorrectly (v9.4.362.0)
Hi All.
This issue will be fixed very soon. Sorry for the inconvenience...
Cheers
This issue will be fixed very soon. Sorry for the inconvenience...
Cheers
- Thu Jul 28, 2022 6:14 pm
- Forum: PDF-XChange Editor SDK
- Topic: "ico.dlg.key" lost in 9.3.* SOLVED
- Replies: 3
- Views: 53
Re: "ico.dlg.key" lost in 9.3.* SOLVED
At the moment you may use ico.unlock instead. In the next build we will add ico.dlg.key-alias for that icon...
- Tue Jul 26, 2022 10:34 pm
- Forum: PDF-XChange Viewer SDK
- Topic: Ability to create bookmarks or notes
- Replies: 3
- Views: 58
Re: Ability to create bookmarks or notes
Hi mgrauman.
1. these menu-items require to have the selected text on the page.
2. the document may have security settings that deny commenting, bookmarking, etc. Check this o File/DocProps/Security dialog.
HTH
1. these menu-items require to have the selected text on the page.
2. the document may have security settings that deny commenting, bookmarking, etc. Check this o File/DocProps/Security dialog.
HTH
- Tue Jul 26, 2022 7:48 pm
- Forum: PDF-XChange Editor SDK
- Topic: Overriding Form Editor Draw Event SOLVED
- Replies: 7
- Views: 108
Re: Overriding Form Editor Draw Event SOLVED
Thank you, Zarko! 

- Tue Jul 19, 2022 11:15 pm
- Forum: PDF-XChange Editor SDK
- Topic: Overriding Form Editor Draw Event SOLVED
- Replies: 7
- Views: 108
Re: Overriding Form Editor Draw Event SOLVED
Another option - you may intercept the "e.formFields.inserted", like: int e_formField = pxvInst.Str2ID("e.formFields.inserted"); OnEvent(eventID, event) { if (eventID == e_formField) { IPXV_FormFieldsList fieldsList = (IPXV_FormFieldsList)e.pFrom; foreach (IPXC_FormField field : ...
- Tue Jul 19, 2022 10:53 pm
- Forum: PDF-XChange Editor SDK
- Topic: JBIG compression .NET SOLVED
- Replies: 3
- Views: 99
Re: JBIG compression .NET SOLVED
Because the original FullDemo doesn't contain that code. I added and tested it in my local copy of FullDemo-project....I have searched through the FullDemo code and there is no such JBIG code like you posted.
Seems is not bad idea to add such code-snippet into the public version of FullDemo..
- Tue Jul 19, 2022 8:50 pm
- Forum: PDF-XChange Editor SDK
- Topic: Change color of Callout text
- Replies: 4
- Views: 126
Re: Change color of Callout text
You also need to use IPXC_AnnotData_FreeText.DefaultTextColor : Dim ad As PDFXEdit.IPXC_AnnotData_FreeText = CType(annot.Data, PDFXEdit.IPXC_AnnotData_FreeText) Dim auxInst As PDFXEdit.IAUX_Inst = Me.docPreview.Inst.GetExtension("AUX") Dim clr As PDFXEdit.IColor = auxInst.CreateColor(PDFXE...
- Tue Jul 19, 2022 8:28 pm
- Forum: PDF-XChange Editor SDK
- Topic: Overriding Form Editor Draw Event SOLVED
- Replies: 7
- Views: 108
Re: Overriding Form Editor Draw Event SOLVED
If I understand you correctly - you may try to use the CustomTool.PagesMarkupTool.OnMouseUp method to catch the moment when user released the left mouse button and finished creation of new rectangle-region of selection...
- Tue Jul 19, 2022 8:13 pm
- Forum: PDF-XChange Editor SDK
- Topic: JBIG compression .NET SOLVED
- Replies: 3
- Views: 99
Re: JBIG compression .NET SOLVED
Hi Eric. In context of our FullDemo(C#) I tried the following code and it works well: FileStream srcStream = new FileStream(fileName, FileMode.Open, FileAccess.ReadWrite, FileShare.Read); if (srcStream == null) return; IStreamWrapper srcIStream = new IStreamWrapper(srcStream); PDFXEdit.IPXC_Document...
- Thu Jul 14, 2022 8:14 pm
- Forum: PDF-XChange Editor SDK
- Topic: Import comments file to signed document
- Replies: 1
- Views: 70
Re: Import comments file to signed document
Hi lidds. In 'Add Digital Signature' operation you need to setup the "DocMDP" param. Put there 3 value: DocMDP: 1 = "No Changes Allowed" 2 = "Allow Form Filling, Document Signing and the Creation of Page Templates" 3 = "Allow Form Filling, Document Signing, Comment...
- Tue Jun 28, 2022 6:03 am
- Forum: PDF-XChange Editor SDK
- Topic: ILogServer::SetListenerMaxLevel SOLVED
- Replies: 3
- Views: 112
Re: ILogServer::SetListenerMaxLevel SOLVED
The prototypes: ILogServer::RegisterListener(ILogListener* pListener, long nMaxLevel = -1); or, to change level for already registered listener: ILogServer::SetListenerMaxLevel(ILogListener* pListener, long nMaxLevel); nMaxLevel - specifies the level of logging granularity you need, to get it via On...
- Tue Jun 28, 2022 5:45 am
- Forum: PDF-XChange Editor SDK
- Topic: ILogListener to catch Convert to PDFA errors in multiple threads SOLVED
- Replies: 3
- Views: 168
Re: ILogListener to catch Convert to PDFA errors in multiple threads SOLVED
Hi Zarko. The working solution for this problem (pseudocode): converThreadFunc(doc2pdfa) { threadID = GetCurThreadID(); thread2DocNameMap.ThreadSafe_Add({ threadID, doc2pdfa.SrcInfo.FileName }); doc2pdfaConverter.Convert(... doc2pdfa ...); } OnLogMsg(...) { threadID = GetCurThreadID(); // the doc2pd...
- Tue Jun 28, 2022 5:30 am
- Forum: PDF-XChange Editor SDK
- Topic: Custom Pane creation SOLVED
- Replies: 45
- Views: 7806
Re: Custom Pane creation SOLVED
Hi, prasantha As solution - you may turn off the breaking of app on this exception in the debug-mode, via: image.png OR, is better to use slightly safer way - you may replace that throw new System.ArgumentException() by the throw new System.NotImplementedException() (and also you need to disable the...
- Mon Jun 13, 2022 4:56 pm
- Forum: PDF-XChange Editor SDK
- Topic: Compare Docs : Operation Restrictions ? SOLVED
- Replies: 3
- Views: 169
Re: Compare Docs : Operation Restrictions ? SOLVED
You need to remove the PrivPermF_DocAssembly too.
- Tue Jun 07, 2022 9:15 pm
- Forum: PDF-XChange Editor SDK
- Topic: IPX Control Commands Sample Without Menu
- Replies: 9
- Views: 278
Re: IPX Control Commands Sample Without Menu
Well, you may hide all tracker's toolbars and add your own toolbar instead, via: // hide all standard toolbars above the pages view { PDFXEdit.IUIX_Obj cmdPaneObj = pdfCtl.Inst.ActiveMainView.CmdPaneTop.Obj; PDFXEdit.IUIX_CmdManager cmdMan = uiInst.CmdManager; uint cmdBarsCnt = cmdMan.CmdBarsCount; ...
- Mon Jun 06, 2022 5:46 pm
- Forum: PDF-XChange Editor
- Topic: Window when in Full-screen draws outside of monitor on each launch.
- Replies: 14
- Views: 410
Re: Window when in Full-screen draws outside of monitor on each launch.
Hi Special. EDIT 2: Also I wanted to note that if I make the window too big, as in there's not enough gap around it from the edges of my screen, and close it, it will reopen as a window again (as it should) but slightly over on my primary monitor. After many attempts we reproduced it and try to fix ...
- Sat Jun 04, 2022 4:12 am
- Forum: PDF-XChange Editor SDK
- Topic: op.compareDocs in SDK SOLVED
- Replies: 3
- Views: 154
Re: op.compareDocs in SDK SOLVED
We will add the op.compareDocs to the future build. But note: the result of that operation will be only the special report-document, not the simple list of differences (while it will be possible to obtain all differences directly from report's pdf-structure).
- Thu Jun 02, 2022 9:19 pm
- Forum: PDF-XChange Editor SDK
- Topic: 361 vs previous: Inst.Str2ID('DlgDocFind') SOLVED
- Replies: 3
- Views: 129
Re: 361 vs previous: Inst.Str2ID('DlgDocFind') SOLVED
Internally we have a table of unique string identifiers, associated with unique numbers. And part of the table is static, i.e. ready to use in the beginning. Other string identifiers are added by code during runtime - that is the dynamic part. And the "DlgDocFind" is adding once to this ta...
- Tue May 17, 2022 7:48 pm
- Forum: PDF-XChange Editor SDK
- Topic: IPX Control Commands Sample Without Menu
- Replies: 9
- Views: 278
Re: IPX Control Commands Sample Without Menu
Here it is:
And Note for Lambchop: this attached sample project has fixed one bug with redrawing custom regions. Also we slightly improved the corresponding UI. So for you is better to use this new one...
And Note for Lambchop: this attached sample project has fixed one bug with redrawing custom regions. Also we slightly improved the corresponding UI. So for you is better to use this new one...
- Tue May 17, 2022 12:37 am
- Forum: PDF-XChange Editor SDK
- Topic: IPX Control Commands Sample Without Menu
- Replies: 9
- Views: 278
Re: IPX Control Commands Sample Without Menu
In the sample, we provided you - you may see the one important string: doc.ActivateTool(MarkupTool.ID); - this code enables your custom tool to listen all UI-events from the PagesView window. And to disable it for your tool(==listener) you need to click any other tool on the Editor' toolbar, for exa...
- Sat May 14, 2022 12:11 am
- Forum: PDF-XChange Editor SDK
- Topic: NEWB Question-Region Selection
- Replies: 16
- Views: 443
Re: NEWB Question-Region Selection
It is known 'issue'... When you have the C# project and add a reference to the ActiveX - it imports all interfaces and types from it. And for some internal purposes the usual COM-property, like IUIX_Event::Pos, can be imported as pair of simple get_Pos()/set_Pos() functions. However, in VB.NET the s...
- Fri May 13, 2022 9:50 pm
- Forum: PDF-XChange Editor SDK
- Topic: NEWB Question-Region Selection
- Replies: 16
- Views: 443
Re: NEWB Question-Region Selection
I just made a simple VB.NET app (WinForm, Desktop), added to its main form the Editor's ActiveX control, and I can see this:
I'm not so experienced in VB.NET but seems all look very similar to corresponding stuff in C#-project...
I'm not so experienced in VB.NET but seems all look very similar to corresponding stuff in C#-project...
- Fri May 13, 2022 9:28 pm
- Forum: PDF-XChange Editor SDK
- Topic: NEWB Question-Region Selection
- Replies: 16
- Views: 443
Re: NEWB Question-Region Selection
That C#-sample project we provided - can you compile it on your side?
- Fri May 13, 2022 5:38 pm
- Forum: PDF-XChange Editor SDK
- Topic: IPX Control Commands Sample Without Menu
- Replies: 9
- Views: 278
Re: IPX Control Commands Sample Without Menu
Step 1: put the mouse into draw mode, Step 2: capture a region based on mouse down/up, Step 3: draw the corresponding selected acroform field. I have found numerous examples of Step #3, but I am not finding the example code for #1 and #2. Seems to be easy... You just need: 1. Open any document (as ...
- Fri May 13, 2022 5:12 pm
- Forum: PDF-XChange Editor SDK
- Topic: NEWB Question-Region Selection
- Replies: 16
- Views: 443
Re: NEWB Question-Region Selection
What programming language are you using?
- Thu May 12, 2022 8:19 pm
- Forum: PDF-XChange Editor SDK
- Topic: v 9.3.* Theme.GetIcon(string) SOLVED
- Replies: 7
- Views: 231
Re: v 9.3.* Theme.GetIcon(string) SOLVED
Just open the Bookmarks pane - you will see what I mean..
- Thu May 12, 2022 7:25 pm
- Forum: PDF-XChange Editor SDK
- Topic: v 9.3.* Theme.GetIcon(string) SOLVED
- Replies: 7
- Views: 231
Re: v 9.3.* Theme.GetIcon(string) SOLVED
The actual IconSet in Editor's runtime is the composition from two different sources - from Theme and from Resources.dat\VectorIcons\Icons.pdf. Also, other clients(external plugins, etc) may add there their own icons (via IUIX_Inst::RegisterIconsLoader). At the moment Theme doesn't contain icons any...
- Wed May 11, 2022 1:47 am
- Forum: PDF-XChange Editor SDK
- Topic: 359 vs 361 IUIX_Icon.GetItem SOLVED
- Replies: 3
- Views: 137
Re: 359 vs 361 IUIX_Icon.GetItem SOLVED
Hi Zarko. Yes, in 360 build we refactored our backend for icons due to the proper support of the vector format for it. As result, the 99% of icons in Editor are vectorial. So now you cannot get raster-images via IUIX_Icon::GetItemImage/IUIX_IconItem::GetImage from them because they don't contain any...
- Tue May 10, 2022 3:54 am
- Forum: PDF-XChange Editor
- Topic: PDF XChange windows can be hard to move when the windows are narrow
- Replies: 5
- Views: 158
Re: PDF XChange windows can be hard to move when the windows are narrow
Hi Zarquan314.
This issue will be fixed in the next build.
Cheers.
This issue will be fixed in the next build.
Cheers.
- Fri May 06, 2022 12:52 am
- Forum: PDF-XChange Editor SDK
- Topic: Proper way to regenerate current view
- Replies: 5
- Views: 191
Re: Proper way to regenerate current view
We reproduced a similar issue with redrawing but only with Prefs>PageDisplay>SyncPagesRendering==Yes settings. Will investigate it, maybe such two cases are related... According to the exception you got: 1. Did you use the official, unmodified FullDemo-sample? 2. Next time when it throws an exceptio...
- Wed May 04, 2022 12:27 am
- Forum: PDF-XChange Editor SDK
- Topic: Proper way to regenerate current view
- Replies: 5
- Views: 191
Re: Proper way to regenerate current view
Hi RMan. We tried to reproduce it in our SDK samples or even in Editor EU, but couldn't. Can you confirm that it is reproducible with the latest 361 build? If yes - maybe it is settings/document related? Or any other tips on how to reproduce it? Anyway, you may redraw the pages view by pdfCtl.Doc.Ac...
- Sat Apr 30, 2022 3:31 am
- Forum: PDF-XChange Editor SDK
- Topic: COMException HRESULT E_FAIL Error by Convert PDF/A
- Replies: 9
- Views: 999
Re: COMException HRESULT E_FAIL Error by Convert PDF/A
Yes, seems it was removed in 359 build.
- Sat Apr 30, 2022 3:25 am
- Forum: PDF-XChange Editor SDK
- Topic: IPXV_ExportConverter.Convert() - nFlags parameter? SOLVED
- Replies: 3
- Views: 156
Re: IPXV_ExportConverter.Convert() - nFlags parameter? SOLVED
Please look for PXV_FmtConvertFlags enum: FmtConvert_NoUI - denies UI showing inside from Convert() FmtConvert_ForPreview - for import convertors only, to prevent open DRM-protected documents FmtConvert_UsePagesRange - if not specified the Convert will ignore "PagesRange" params(when its s...
- Wed Apr 27, 2022 8:12 pm
- Forum: PDF-XChange Editor SDK
- Topic: Add text under image
- Replies: 9
- Views: 454
Re: Add text under image
Hi lidds. Here is 'refined' code sample to place the text under image: Dim rc As PXC_Rect = Nothing rc.top = 700 rc.bottom = 300 rc.left = 100 rc.right = 500 Dim imageSrc As String = Application.StartupPath & "\Resources\MasterStamp.pdf" Dim textUnderImage As String = "The Text Un...
- Thu Apr 14, 2022 11:56 pm
- Forum: PDF-XChange Editor SDK
- Topic: Suppress File Save As Dialog after Placing Digital Signature in Doc
- Replies: 6
- Views: 277
Re: Suppress File Save As Dialog after Placing Digital Signature in Doc
Can you reproduce this issue with a build starting from v359?
And note: for a digital signature you can only use a certificate that has a private key. For example:
And note: for a digital signature you can only use a certificate that has a private key. For example:
- Wed Apr 13, 2022 10:27 pm
- Forum: PDF-XChange Editor
- Topic: Pencil tool sometimes puts in a circle in middle of line
- Replies: 24
- Views: 751
Re: Pencil tool sometimes puts in a circle in middle of line
Hi Zarquan.
Seems we found the reason of the trouble: tiny twitches at the end of the line may cause appearing such strange dots.
This issue will be fixed in the 361 build. Please check this new build and let us know about the result. Thanks.
Cheesr.
Seems we found the reason of the trouble: tiny twitches at the end of the line may cause appearing such strange dots.
This issue will be fixed in the 361 build. Please check this new build and let us know about the result. Thanks.
Cheesr.
- Wed Apr 13, 2022 7:01 pm
- Forum: PDF-XChange Editor SDK
- Topic: Suppress File Save As Dialog after Placing Digital Signature in Doc
- Replies: 6
- Views: 277
Re: Suppress File Save As Dialog after Placing Digital Signature in Doc
Hi Asamrith. I tried the following code in our \PDFEditorSDKExamples\CSharp\FullDemo sample app: ... if (e.nEventID == nIDS[(int)IDS.e_operBeforeExecute]) { PDFXEdit.IOperation op = (PDFXEdit.IOperation)e.pFrom; if (op != null && op.ID == nIDS[(int)IDS.op_document_addDigitalSignature]) { PDF...
- Wed Apr 13, 2022 5:47 pm
- Forum: PDF-XChange Editor
- Topic: Tabs in 360.0
- Replies: 24
- Views: 895
Re: Tabs in 360.0
Hi Arnold. About the "pure white scrollbar's background when face-color is white" problem. In the upcoming 361 build we tried to tweak it slightly to make it a little darker, for that case. Also in that build we solved the "RT#6026: Make tiles in dark themes use white background"...
- Tue Apr 12, 2022 11:41 pm
- Forum: PDF-XChange Editor SDK
- Topic: Border around Editor Control
- Replies: 7
- Views: 341
Re: Border around Editor Control
Hi Jeff. The noticeable border line on the top of embedded control - we will remove it in the upcoming 361. Additionally, you may remove very tiny border around whole toolbars-pane on the top, by: pdfCtl.Inst.ActiveMainFrm.View.CmdPaneTop.BorderStyle = 0; I don't know what draws a similar line at th...
- Tue Apr 12, 2022 7:14 pm
- Forum: PDF-Tools
- Topic: A bug for Enhance Scanned Pages
- Replies: 16
- Views: 1203
Re: A bug for Enhance Scanned Pages
Hi eu4you.
This issue will be fixed in the upcoming 361 build.
Cheers.
This issue will be fixed in the upcoming 361 build.
Cheers.