Search found 2344 matches

by Vasyl-Tracker Dev Team
Sat Aug 13, 2022 3:40 am
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1874

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....
by Vasyl-Tracker Dev Team
Sat Aug 13, 2022 2:58 am
Forum: PDF-XChange Editor SDK
Topic: How to delete annotation without confirmation message
Replies: 9
Views: 1226

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(363 build)...
by Vasyl-Tracker Dev Team
Sat Aug 13, 2022 2:52 am
Forum: PDF-XChange Editor SDK
Topic: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
Replies: 3
Views: 928

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
by Vasyl-Tracker Dev Team
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: 398

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
by Vasyl-Tracker Dev Team
Thu Jul 28, 2022 6:14 pm
Forum: PDF-XChange Editor SDK
Topic: "ico.dlg.key" lost in 9.3.* SOLVED
Replies: 3
Views: 856

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...
by Vasyl-Tracker Dev Team
Tue Jul 26, 2022 10:34 pm
Forum: PDF-XChange Viewer SDK
Topic: Ability to create bookmarks or notes
Replies: 3
Views: 2141

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
by Vasyl-Tracker Dev Team
Tue Jul 19, 2022 11:15 pm
Forum: PDF-XChange Editor SDK
Topic: Overriding Form Editor Draw Event SOLVED
Replies: 7
Views: 1255

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 : ...
by Vasyl-Tracker Dev Team
Tue Jul 19, 2022 10:53 pm
Forum: PDF-XChange Editor SDK
Topic: JBIG compression .NET SOLVED
Replies: 3
Views: 1061

Re: JBIG compression .NET SOLVED

...I have searched through the FullDemo code and there is no such JBIG code like you posted.
Because the original FullDemo doesn't contain that code. I added and tested it in my local copy of FullDemo-project.
Seems is not bad idea to add such code-snippet into the public version of FullDemo..
by Vasyl-Tracker Dev Team
Tue Jul 19, 2022 8:50 pm
Forum: PDF-XChange Editor SDK
Topic: Change color of Callout text
Replies: 4
Views: 606

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...
by Vasyl-Tracker Dev Team
Tue Jul 19, 2022 8:28 pm
Forum: PDF-XChange Editor SDK
Topic: Overriding Form Editor Draw Event SOLVED
Replies: 7
Views: 1255

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...
by Vasyl-Tracker Dev Team
Tue Jul 19, 2022 8:13 pm
Forum: PDF-XChange Editor SDK
Topic: JBIG compression .NET SOLVED
Replies: 3
Views: 1061

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...
by Vasyl-Tracker Dev Team
Thu Jul 14, 2022 8:14 pm
Forum: PDF-XChange Editor SDK
Topic: Import comments file to signed document
Replies: 1
Views: 467

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...
by Vasyl-Tracker Dev Team
Tue Jun 28, 2022 6:03 am
Forum: PDF-XChange Editor SDK
Topic: ILogServer::SetListenerMaxLevel SOLVED
Replies: 3
Views: 840

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...
by Vasyl-Tracker Dev Team
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: 935

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...
by Vasyl-Tracker Dev Team
Tue Jun 28, 2022 5:30 am
Forum: PDF-XChange Editor SDK
Topic: Custom Pane creation SOLVED
Replies: 45
Views: 12414

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...
by Vasyl-Tracker Dev Team
Mon Jun 13, 2022 4:56 pm
Forum: PDF-XChange Editor SDK
Topic: Compare Docs : Operation Restrictions ? SOLVED
Replies: 8
Views: 2571

Re: Compare Docs : Operation Restrictions ? SOLVED

You need to remove the PrivPermF_DocAssembly too.
by Vasyl-Tracker Dev Team
Tue Jun 07, 2022 9:15 pm
Forum: PDF-XChange Editor SDK
Topic: IPX Control Commands Sample Without Menu
Replies: 9
Views: 1184

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; ...
by Vasyl-Tracker Dev Team
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: 1163

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 ...
by Vasyl-Tracker Dev Team
Sat Jun 04, 2022 4:12 am
Forum: PDF-XChange Editor SDK
Topic: op.compareDocs in SDK SOLVED
Replies: 3
Views: 828

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).
by Vasyl-Tracker Dev Team
Thu Jun 02, 2022 9:19 pm
Forum: PDF-XChange Editor SDK
Topic: 361 vs previous: Inst.Str2ID('DlgDocFind') SOLVED
Replies: 3
Views: 763

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...
by Vasyl-Tracker Dev Team
Tue May 17, 2022 7:48 pm
Forum: PDF-XChange Editor SDK
Topic: IPX Control Commands Sample Without Menu
Replies: 9
Views: 1184

Re: IPX Control Commands Sample Without Menu

Here it is:

FullDemo.CustomTool.zip
(130.63 KiB) Downloaded 66 times
image.png
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...
by Vasyl-Tracker Dev Team
Tue May 17, 2022 12:37 am
Forum: PDF-XChange Editor SDK
Topic: IPX Control Commands Sample Without Menu
Replies: 9
Views: 1184

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...
by Vasyl-Tracker Dev Team
Sat May 14, 2022 12:11 am
Forum: PDF-XChange Editor SDK
Topic: NEWB Question-Region Selection
Replies: 16
Views: 1922

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...
by Vasyl-Tracker Dev Team
Fri May 13, 2022 9:50 pm
Forum: PDF-XChange Editor SDK
Topic: NEWB Question-Region Selection
Replies: 16
Views: 1922

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:
image.png
I'm not so experienced in VB.NET but seems all look very similar to corresponding stuff in C#-project...
by Vasyl-Tracker Dev Team
Fri May 13, 2022 9:28 pm
Forum: PDF-XChange Editor SDK
Topic: NEWB Question-Region Selection
Replies: 16
Views: 1922

Re: NEWB Question-Region Selection

That C#-sample project we provided - can you compile it on your side?
by Vasyl-Tracker Dev Team
Fri May 13, 2022 5:38 pm
Forum: PDF-XChange Editor SDK
Topic: IPX Control Commands Sample Without Menu
Replies: 9
Views: 1184

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 ...
by Vasyl-Tracker Dev Team
Fri May 13, 2022 5:12 pm
Forum: PDF-XChange Editor SDK
Topic: NEWB Question-Region Selection
Replies: 16
Views: 1922

Re: NEWB Question-Region Selection

What programming language are you using?
by Vasyl-Tracker Dev Team
Thu May 12, 2022 8:19 pm
Forum: PDF-XChange Editor SDK
Topic: v 9.3.* Theme.GetIcon(string) SOLVED
Replies: 7
Views: 1100

Re: v 9.3.* Theme.GetIcon(string) SOLVED

Just open the Bookmarks pane - you will see what I mean..
by Vasyl-Tracker Dev Team
Thu May 12, 2022 7:25 pm
Forum: PDF-XChange Editor SDK
Topic: v 9.3.* Theme.GetIcon(string) SOLVED
Replies: 7
Views: 1100

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...
by Vasyl-Tracker Dev Team
Wed May 11, 2022 1:47 am
Forum: PDF-XChange Editor SDK
Topic: 359 vs 361 IUIX_Icon.GetItem SOLVED
Replies: 3
Views: 786

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...
by Vasyl-Tracker Dev Team
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: 377

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.
by Vasyl-Tracker Dev Team
Fri May 06, 2022 12:52 am
Forum: PDF-XChange Editor SDK
Topic: Proper way to regenerate current view
Replies: 5
Views: 895

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...
by Vasyl-Tracker Dev Team
Wed May 04, 2022 12:27 am
Forum: PDF-XChange Editor SDK
Topic: Proper way to regenerate current view
Replies: 5
Views: 895

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...
by Vasyl-Tracker Dev Team
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: 1934

Re: COMException HRESULT E_FAIL Error by Convert PDF/A

Yes, seems it was removed in 359 build.
by Vasyl-Tracker Dev Team
Sat Apr 30, 2022 3:25 am
Forum: PDF-XChange Editor SDK
Topic: IPXV_ExportConverter.Convert() - nFlags parameter? SOLVED
Replies: 3
Views: 882

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...
by Vasyl-Tracker Dev Team
Wed Apr 27, 2022 8:12 pm
Forum: PDF-XChange Editor SDK
Topic: Add text under image
Replies: 9
Views: 1130

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...
by Vasyl-Tracker Dev Team
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: 806

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:
image.png
by Vasyl-Tracker Dev Team
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: 1486

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.
by Vasyl-Tracker Dev Team
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: 806

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...
by Vasyl-Tracker Dev Team
Wed Apr 13, 2022 5:47 pm
Forum: PDF-XChange Editor
Topic: Tabs in 360.0
Replies: 30
Views: 2662

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 &quo...
by Vasyl-Tracker Dev Team
Tue Apr 12, 2022 11:41 pm
Forum: PDF-XChange Editor SDK
Topic: Border around Editor Control
Replies: 7
Views: 939

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...
by Vasyl-Tracker Dev Team
Tue Apr 12, 2022 7:14 pm
Forum: PDF-Tools
Topic: A bug for Enhance Scanned Pages
Replies: 16
Views: 2359

Re: A bug for Enhance Scanned Pages

Hi eu4you.

This issue will be fixed in the upcoming 361 build.

Cheers.
by Vasyl-Tracker Dev Team
Mon Apr 11, 2022 5:10 pm
Forum: PDF-XChange Editor SDK
Topic: prevent drop in bookmarksview
Replies: 3
Views: 608

Re: prevent drop in bookmarksview

Hi jusWest. You may try the following way (pseudocode): IUIX_Tree bookmTree; bookmPane.Obj.QueryImpl(_GuidOf_(IUIX_Tree), out bookmTree); IUIX_DropTargetSupport dropSupp = (IUIX_DropTargetSupport)bookmTree; // QueryInterface is used tehnically... int nDropFmtToKeep = RegisterClipboardFormat("UI...
by Vasyl-Tracker Dev Team
Thu Apr 07, 2022 1:21 am
Forum: PDF-XChange Editor
Topic: Zoom in/out tool - click and drag (Version: 9.3.360.0)
Replies: 2
Views: 397

Re: Zoom in/out tool - click and drag (Version: 9.3.360.0)

This issue will be fixed soon. Thanks for the report.
by Vasyl-Tracker Dev Team
Thu Apr 07, 2022 12:59 am
Forum: PDF-XChange Editor
Topic: Tabs in 360.0
Replies: 30
Views: 2662

Re: Tabs in 360.0

Such proposed bullets are not text characters, not part of the text of the tab. Just an additional graphic element...
It can be an option to show/hide such bullets for document tabs.
by Vasyl-Tracker Dev Team
Wed Apr 06, 2022 9:13 pm
Forum: PDF-XChange Editor
Topic: Previous/next entry with search tool
Replies: 6
Views: 418

Re: Previous/next entry with search tool

Hi MedBooster.

We will add such commands to this list in the near future.
by Vasyl-Tracker Dev Team
Wed Apr 06, 2022 8:59 pm
Forum: PDF-XChange Editor SDK
Topic: Enabling the Document Recovery in the SDK
Replies: 15
Views: 4791

Re: Enabling the Document Recovery in the SDK

Hi RMan.

Sorry for the delay with the answer. The document recovery is disabled in the SDK mode, at the moment. Yes, you may see Recovery-options on the Prefs but internally the Recovery-stuff is turned off for some reason.

Cheers.
by Vasyl-Tracker Dev Team
Wed Apr 06, 2022 7:45 pm
Forum: PDF-XChange Editor
Topic: Tabs in 360.0
Replies: 30
Views: 2662

Re: Tabs in 360.0

Hi Arnold.

image.png

- how about these bullets to 'catch the eye' ?
by Vasyl-Tracker Dev Team
Wed Apr 06, 2022 6:59 pm
Forum: OCR- For the PDF-XChange Editor and Viewer
Topic: "Jumping" letters as a result of OCR
Replies: 12
Views: 4158

Re: "Jumping" letters as a result of OCR

Hi Jensen. ...our small study of the problem with you does not answer the question, how did your competitors achieve the display of a document with corrected skew without the bug discussed? The following explanation is: in this particular case the page contains not just one big image but a bunch of ...