Search found 914 matches

by jeffp
Wed Sep 06, 2023 3:55 pm
Forum: PDF-XChange Editor SDK
Topic: Can't Hide Identify Forms menu item
Replies: 4
Views: 2676

Re: Can't Hide Identify Forms menu item

Any thoughts on this one?
by jeffp
Thu Aug 31, 2023 10:39 pm
Forum: PDF-XChange Editor SDK
Topic: Can't Hide Identify Forms menu item
Replies: 4
Views: 2676

Re: Can't Hide Identify Forms menu item

Oh, sorry. Yes, should be in the SDK forum. Can you move it there for me.

--Jeff
by jeffp
Thu Aug 31, 2023 12:01 am
Forum: PDF-XChange Editor SDK
Topic: Can't Hide Identify Forms menu item
Replies: 4
Views: 2676

Can't Hide Identify Forms menu item

I'm using the following Delphi function to successfully hide a number of you menu items. procedure TMyPDFControl.SetCommandState(AName: String; AHidden: Boolean); var ACmd: IUIX_Cmd; begin try ACmd := INST_UIX.CmdManager.Cmd[INST_PXV.Str2ID(AName, False)]; if Assigned(ACmd) then begin ACmd.Hidden :=...
by jeffp
Mon Sep 19, 2022 10:02 pm
Forum: PDF-XChange Drivers API SDK
Topic: Uninstall Lite Driver
Replies: 1
Views: 2836

Uninstall Lite Driver

I'm trying to remove the Lite PDF Printer driver via code and replicate what happens when the user clicks the "Uninstall" button in Windows Add/Remove programs. However, I can't get it to happen. Here are the params I'm using ...\Drivers\PDFXLite9.exe /quiet /uninstall /norestart What am I...
by jeffp
Tue Aug 16, 2022 5:54 pm
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

Re: DarkMode

YES!

The seems to work. I'll do some more testing, but thanks so much for sticking with this one.

You guys are awesome. As always!

--Jeff
by jeffp
Sat Aug 13, 2022 9:14 pm
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

Re: DarkMode

I was doing it on a restart of the app before. Looks like I'll need to return to that way of doing it.

Thanks for your help here.

--Jeff
by jeffp
Sat Aug 13, 2022 2:08 pm
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

Re: DarkMode

In the Delphi Vcl.Themes.pas unit, I call this TStyleManager.TrySetStyle('Windows 10 Dark', False); You'll need to make sure that Theme is turned on in your IDE. Yes, it does feel like a Window handle recreation issue. When I make that call, the entire application seems to disappear and reappear. Is...
by jeffp
Sat Aug 13, 2022 4:58 am
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

Re: DarkMode

I guess I wasn't clear in my last message. The issue has nothing to do with how Dark Mode or any theme is set in your Editor. With your Editor being embedded as an Active X control inside my Delphi application, something happens to the Editor when I change themes inside my Delphi app. This is not re...
by jeffp
Fri Aug 12, 2022 7:11 pm
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

Re: DarkMode

Another general Dark Mode issue has come up in my application. As a bit of background, I am embedding your ActiveX Editor SDK into my Delphi Application or exe. So here's the new issue. When I open my Delphi Application, I click on a certain tab which displays your embedded Editor in my program. Whe...
by jeffp
Tue Aug 09, 2022 6:52 pm
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

Re: DarkMode

Also, is there a place I can get a comprehensive list of all Settings, like CustomUI.Theme.
by jeffp
Tue Aug 09, 2022 6:43 pm
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

Re: DarkMode

Perfect. Thanks
by jeffp
Tue Aug 09, 2022 12:12 am
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 1824

DarkMode

How can I turn on Dark Mode in code. I finally have this option in my application. I now want to turn on Dark Mode in the Editor SDK to make my program.

Thanks.
by jeffp
Thu Apr 14, 2022 7:23 pm
Forum: PDF-XChange Editor SDK
Topic: Temp Status?
Replies: 3
Views: 539

Re: Temp Status?

How exactly to I add the PXV_DocSave_Copy to the DocSaveEvent.Flags. See below. procedure TMyPDFControl.DoEvent(ASender: TObject; nEventID: Integer; const pEvent: IEvent; const pFrom: IUnknown); var ADoc: IPXV_Document; begin if (nEventID = FEvent_DocBeforeSave) then begin ADoc := IPXV_Document(pFro...
by jeffp
Thu Apr 14, 2022 2:54 pm
Forum: PDF-XChange Editor SDK
Topic: Temp Status?
Replies: 3
Views: 539

Temp Status?

Is there a way to set a Document as temp or some other property so that when the save button is pressed a Save As Dialog appears rather than just saving the file directly?

--Jeff
by jeffp
Thu Apr 14, 2022 1:50 pm
Forum: PDF-XChange Editor SDK
Topic: PDFXEdit_TLB.pas
Replies: 6
Views: 713

Re: PDFXEdit_TLB.pas

Thanks Zarko. I don't currently use those, but I'll update my unit to reflect your changes just in case.

Thanks again.
by jeffp
Thu Apr 14, 2022 2:33 am
Forum: PDF-XChange Editor SDK
Topic: PDFXEdit_TLB.pas
Replies: 6
Views: 713

PDFXEdit_TLB.pas

I thought I'd bring this tlb file issue to your attention. In Delphi, when I create the TLB file from your DLL, it gets one thing wrong. It has to do with the viewMatrix type in the procedure OnCameraEvent of the IPXV_Annot3DCallbackDisp interface. Here's what it gives me: procedure OnCameraEvent(co...
by jeffp
Wed Apr 13, 2022 7:06 pm
Forum: PDF-XChange Editor SDK
Topic: Border around Editor Control
Replies: 7
Views: 918

Re: Border around Editor Control

Actually, this fixed my issue so I'm good now.

pdfCtl.Inst.ActiveMainFrm.View.CmdPaneTop.BorderStyle = 0;


Thanks.

--Jeff
by jeffp
Wed Apr 13, 2022 3:39 pm
Forum: PDF-XChange Editor SDK
Topic: Border around Editor Control
Replies: 7
Views: 918

Re: Border around Editor Control

Thanks.

When do you expect build .361?
by jeffp
Mon Apr 11, 2022 4:10 pm
Forum: PDF-XChange Editor SDK
Topic: Border around Editor Control
Replies: 7
Views: 918

Re: Border around Editor Control

Embedded SDK.PNG I didn't make any changes. Take a look at the attachment. There is now an extra border line between our main toolbar buttons and your menu bar. Your control is embedded just below our main tool bar buttons. Not a huge deal but it just started to appear in the last SDK or two. --Jeff
by jeffp
Fri Apr 08, 2022 11:52 pm
Forum: PDF-XChange Editor SDK
Topic: Border around Editor Control
Replies: 7
Views: 918

Border around Editor Control

I just installed the latest Editor SDK and a dark border now appears around the Editor Control, which I embed into my application. It didn't seem to be there before. Is there a way to hide the border around the ActiveX Editor Control? It just presents a minor UI issue in my application. Thanks. --Jeff
by jeffp
Thu Feb 10, 2022 4:17 pm
Forum: PDF-XChange Editor SDK
Topic: Dynamic Stamp Refresh Issue
Replies: 11
Views: 1626

Re: Dynamic Stamp Refresh Issue

Got it working. Thanks so much.

--Jeff
by jeffp
Tue Feb 08, 2022 10:45 pm
Forum: PDF-XChange Editor SDK
Topic: Dynamic Stamp Refresh Issue
Replies: 11
Views: 1626

Re: Dynamic Stamp Refresh Issue

I was told above that I needed to save changes to the stamp file in the SDK since the SDK does things differently. I'm just trying to find out the exact steps I need to take in the SDK for this dynamic stamp to work. Again, it does update or recalculate to the Name in Identity until I go and modify ...
by jeffp
Fri Feb 04, 2022 1:41 am
Forum: PDF-XChange Editor SDK
Topic: Dynamic Stamp Refresh Issue
Replies: 11
Views: 1626

Re: Dynamic Stamp Refresh Issue

Ok. I got that. I now Save the Identity settings when I exit the app. But it seems I need to refresh or resave the actual stamps file too. When I close and reopen, the dynamic stamp always reverts back the default username instead of what's in the Identity name. Do I need to do something as I select...
by jeffp
Tue Feb 01, 2022 6:28 pm
Forum: PDF-XChange Editor SDK
Topic: Dynamic Stamp Refresh Issue
Replies: 11
Views: 1626

Re: Dynamic Stamp Refresh Issue

Can you give me an example of how to do this with the SDK?

Am I saving changes to the file being stamped by the stamp file? Or the stamp file itself?

I don't completely follow.

--Jeff
by jeffp
Tue Jan 25, 2022 7:41 pm
Forum: PDF-XChange Editor SDK
Topic: Dynamic Stamp Refresh Issue
Replies: 11
Views: 1626

Re: Dynamic Stamp Refresh Issue

Sure. See attached.
dynamic-stamps.zip
(38.26 KiB) Downloaded 81 times
by jeffp
Thu Jan 20, 2022 10:53 pm
Forum: PDF-XChange Editor SDK
Topic: Dynamic Stamp Refresh Issue
Replies: 11
Views: 1626

Dynamic Stamp Refresh Issue

I'm having a refresh issue with using the Name property in the Identity options. I have loaded a dynamic stamp that uses the "Name" item in the Identity Options located on the Edit>Preferences>Identity page. Here's what I'm seeing. I set the Name to "Test". I then close the edito...
by jeffp
Fri Dec 17, 2021 9:49 pm
Forum: PDF-XChange Editor SDK
Topic: Deskew Pages Content
Replies: 5
Views: 770

Re: Deskew Pages Content

I found it. It was on my end having to do with how and when I loaded custom settings.
by jeffp
Fri Dec 17, 2021 7:59 pm
Forum: PDF-XChange Editor SDK
Topic: Deskew Pages Content
Replies: 5
Views: 770

Re: Deskew Pages Content

I'm using the SDK, but embedded in my application so I get all the menus of the end user product.
by jeffp
Thu Dec 16, 2021 11:11 pm
Forum: PDF-XChange Editor SDK
Topic: Deskew Pages Content
Replies: 5
Views: 770

Deskew Pages Content

I have a weird issue. The menu item Document>>Deskew Pages Content seems to appear and then disappear as a document is closed and reopened. Same thing for Document>>Enhance Scanned Pages. Are these items supposed to appear only in certain contexts like the type of PDF document being opened? Image PD...
by jeffp
Fri Dec 10, 2021 10:23 pm
Forum: PDF-XChange Editor SDK
Topic: How to Get the Selected Content Item
Replies: 7
Views: 1068

Re: How to Get the Selected Content Item

Perfect! Thanks.
by jeffp
Fri Dec 10, 2021 3:01 pm
Forum: PDF-XChange Editor SDK
Topic: How to Get the Selected Content Item
Replies: 7
Views: 1068

Re: How to Get the Selected Content Item

Ok. I got it working except I have to save the document after I call PlaceContent in order to see the changes to the image in the editor.

Is there some way to call a refresh or something after PlaceContent so that the changes will show without Saving the Document?

--Jeff
by jeffp
Fri Dec 10, 2021 2:21 pm
Forum: PDF-XChange Editor SDK
Topic: ARM Processors
Replies: 3
Views: 748

Re: ARM Processors

My app is 32bit, so is there an arm dll for that too? Where do I find them to download? Do I just drop them in the same folder at PDFXEditCore.x86.dll?

--Jeff
by jeffp
Thu Dec 09, 2021 9:05 pm
Forum: PDF-XChange Editor SDK
Topic: ARM Processors
Replies: 3
Views: 748

ARM Processors

Have you had any issues running the SDK on ARM processors. I have a customer running a Surface Pro X with an ARM processor and can't seem to run our embedded editor using your SDK.

--Jeff
by jeffp
Thu Dec 09, 2021 7:25 pm
Forum: PDF-XChange Editor SDK
Topic: How to Get the Selected Content Item
Replies: 7
Views: 1068

Re: How to Get the Selected Content Item

Ok. I'm able to get the selected ContentItem. Now I need to create a IIXC_Page from the IPXC_ContentItem, edit it, and then replace it. I can do all but the replacing. How do I swap out the content item's image for a new one? Step 1: AItem.Image_CreateIXCPage(False, RI_Perceptual, ixcPage); Step 2: ...
by jeffp
Wed Dec 08, 2021 5:10 pm
Forum: PDF-XChange Editor SDK
Topic: How to Get the Selected Content Item
Replies: 7
Views: 1068

How to Get the Selected Content Item

In the Editor with the selection tool on, how can I get the IPXC_ContentItem object associated with the selected content item? In my case, I want to be able to select an image in the PDF page and then get the associated IPXC_ContentItem object so I can then extract the image to a separate image file...
by jeffp
Tue Dec 07, 2021 7:06 pm
Forum: PDF-XChange Editor SDK
Topic: Combining Images on PDF Page
Replies: 6
Views: 1148

Re: Combining Images on PDF Page

m.f = -GroupBBox.bottom * m.d + H - 1;

What does the "H" refer to above?
by jeffp
Mon Dec 06, 2021 8:41 pm
Forum: PDF-XChange Editor SDK
Topic: Combining Images on PDF Page
Replies: 6
Views: 1148

Re: Combining Images on PDF Page

I'll give it a try. Thanks.

--Jeff
by jeffp
Fri Dec 03, 2021 8:29 pm
Forum: PDF-XChange Editor SDK
Topic: Combining Images on PDF Page
Replies: 6
Views: 1148

Combining Images on PDF Page

Some programs when creating an image PDF or partial image PDF break up the image into multiple images before placing them on the page. I'm looking for a way in the PDF Editor SDK to combine or stitch together all the smaller images into one image. And then eventually present that one image to the us...
by jeffp
Tue Oct 26, 2021 12:51 am
Forum: PDF-XChange Editor SDK
Topic: DocuSign
Replies: 12
Views: 1934

Re: DocuSign

Not what I wanted to hear but I understand.

If it's not in the SDK can you remove the menu item for it in the Document menu.

--Jeff
by jeffp
Thu Oct 21, 2021 9:41 am
Forum: PDF-XChange Editor SDK
Topic: DocuSign
Replies: 12
Views: 1934

Re: DocuSign

I downloaded the protable zip file and ran the exe. I then opened a PDF and when to the Protect tab and clicked on Sign with DocuSign. It looked like it was trying to bring up your window but instead got the attached error message. Doc1.pdf In the Editor SDK, the DocuSign options in the don't appear...
by jeffp
Wed Oct 20, 2021 8:45 pm
Forum: PDF-XChange Editor SDK
Topic: DocuSign
Replies: 12
Views: 1934

Re: DocuSign

I still can't get DocuSign to work on your new .357 build. Again, I'm using the PDF Editor SDK and I just open a PDF and go to Document>>DocuSign but no subitems or actions appear. There is a left arrow indicating that something should be there, but nothing is. Is it expecting something on the machi...
by jeffp
Wed Oct 20, 2021 4:54 pm
Forum: PDF-XChange Editor SDK
Topic: Delphi PDFXEdit_TLB.pas file won't compile
Replies: 7
Views: 2007

Delphi PDFXEdit_TLB.pas file won't compile

With your .357 build released yesterday, the PDFXEdit_TLB.pas file generated by Delphi from your PDFXEditCore.x86.dll does not compile. This has never happened before. The compiler complains of an "Illegal type in OLE automateion section: 'PXC_3DMatrix4x4' It happens on line 2741 with the proce...
by jeffp
Tue Oct 19, 2021 1:47 pm
Forum: PDF-XChange Editor SDK
Topic: DocuSign
Replies: 12
Views: 1934

Re: DocuSign

Any idea when the new build will be out that fixes this?

Jeff
by jeffp
Tue Aug 31, 2021 2:16 pm
Forum: PDF-XChange Editor SDK
Topic: Change Names of Document Tabs
Replies: 3
Views: 1012

Re: Change Names of Document Tabs

That worked. Thanks!
by jeffp
Tue Aug 31, 2021 1:03 am
Forum: PDF-XChange Editor SDK
Topic: Change Names of Document Tabs
Replies: 3
Views: 1012

Change Names of Document Tabs

After making changes in the IPXC_DocSrcInfo from the TPXV_Control, the name displayed on the document tabs across the top do not change. FControl.Frame.View.DocViewsArea.DocViews .Doc.CoreDoc.SrcInfo.CustDispTitle:= 'New PDF'; FControl.Frame.View.DocViewsArea.DocViews .Doc.CoreDoc.SrcInfo.CustDispFi...
by jeffp
Fri Aug 13, 2021 2:37 pm
Forum: PDF-XChange Editor SDK
Topic: DocuSign
Replies: 12
Views: 1934

Re: DocuSign

I assume it will be fixed in build .357?

I can wait.
by jeffp
Wed Aug 11, 2021 6:23 pm
Forum: PDF-XChange Editor SDK
Topic: DocuSign
Replies: 12
Views: 1934

DocuSign

I see you've added DocuSign integration to the Editor SDK. However, when I select Document>>DocuSign i get only a blank submenu. I'm not getting the docusign options.

How do I configure DocuSign to work with the Editor SDK?

--Jeff
by jeffp
Thu Feb 11, 2021 5:06 pm
Forum: PDF-XChange Editor SDK
Topic: Dragging Tab to new window
Replies: 1
Views: 553

Dragging Tab to new window

I have the Editor SDK embedded in my application. But if a user drags a tab outside of my application it appears in a new window which is great. However, now there appears a message across the top saying "You have installed a license keys that are not activated". This didn't happen before ...
by jeffp
Thu Oct 15, 2020 3:18 pm
Forum: PDF-XChange Editor SDK
Topic: InsertPagesFromDoc Issue
Replies: 18
Views: 3549

Re: InsertPagesFromDoc Issue

My bad. Sorry.
by jeffp
Thu Oct 15, 2020 5:39 am
Forum: PDF-XChange Editor SDK
Topic: InsertPagesFromDoc Issue
Replies: 18
Views: 3549

Re: InsertPagesFromDoc Issue

Was playing around with another PDF component written in C# and they have a call in their SDK called

ForceGarbageCollection

May I suggest adding this at some point to your SDK. Thanks.

--Jeff