Search found 213 matches

by cew
Mon Jul 05, 2021 3:33 pm
Forum: PDF-XChange Editor SDK
Topic: How to set "Get the information from the Active Directory"
Replies: 8
Views: 2724

Re: How to set "Get the information from the Active Directory"

Sasha - Tracker Dev Team wrote: Fri Jul 02, 2021 8:27 am Then, when changing some settings and closing the Editor, you will see the changes made to the registry in the correspondent group.
Now I understand what "Tracker" in Tracker-Software stands for:
It's "Registry-Tracker" :lol: :lol: :lol:

Best regards :wink:
cew
by cew
Fri Jul 02, 2021 10:19 am
Forum: PDF-XChange Editor SDK
Topic: How to set "Get the information from the Active Directory"
Replies: 8
Views: 2724

Re: How to set "Get the information from the Active Directory"

Hello Alex, There is no documentation available for these. Basically to check the needed flag, open the registry of the End-User Editor: Computer\HKEY_CURRENT_USER\SOFTWARE\Tracker Software\PDFXEditor\3.0\Settings Then, when changing some settings and closing the Editor, you will see the changes mad...
by cew
Wed Jun 30, 2021 2:40 pm
Forum: PDF-XChange Editor SDK
Topic: How to set "Get the information from the Active Directory"
Replies: 8
Views: 2724

Re: How to set "Get the information from the Active Directory"

Sasha - Tracker Dev Team wrote: Wed Jun 30, 2021 2:26 pm
Also, to enable that setting use the

Code: Select all

Editor.Inst.Settings["Identity.GetFromAD"].v = true;
Hi Alex,

got it to work, thank you very much!


Btw: Where do I find a documentation about the available settings and the keys like "Identity.GetFromAD"?


Regards
cew
by cew
Wed Jun 30, 2021 1:09 pm
Forum: PDF-XChange Editor SDK
Topic: How to set "Get the information from the Active Directory"
Replies: 8
Views: 2724

How to set "Get the information from the Active Directory"

Hi there, I need to set the flag "Get the information from the Active Directory" (Edit -> Preferences -> Identity) by code to be able to get the identity's Name used in stamps set by Editor.Inst.Settings["Identity.Name"].v = "My Name"; I tried to set Editor.Inst.Setting...
by cew
Wed Jun 05, 2019 6:57 am
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

Thank you for your help :)

Best regards
cew
by cew
Mon Jun 03, 2019 2:10 pm
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

I got it, thank you!

Best regards
cew
by cew
Mon Jun 03, 2019 1:52 pm
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

How do I get the index of the current editor instance to be able to address the right editor using your code?

Best regards
cew
by cew
Mon Jun 03, 2019 1:39 pm
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

Hi, I encapsulated the Editor in an own control. Two of these controls are placed nearby in my application. On top of each control a have a button for selecting an image that will be copied to the clipboard an then the targeted editor will use the Paste command to get the grafic from the clipboard. ...
by cew
Mon Jun 03, 2019 11:16 am
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

Any further ideas?
by cew
Mon Jun 03, 2019 9:49 am
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

Sasha - Tracker Dev Team wrote: Mon Jun 03, 2019 9:43 am Hello cew,

Yup, but try using both of the Editor.Focus() and doc.ActiveView.SetInputFocus(true) and see if it helps.

Cheers,
Alex
Guess what I did :wink:
It does not help ...

Best regards
cew
by cew
Mon Jun 03, 2019 9:40 am
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

Do you mean that what I posted in my initial question?

Code: Select all

var doc = Editor.Doc;
doc.ActiveView.PagesView.Obj.SetInputFocus(true);

Best regards
cew
by cew
Mon Jun 03, 2019 9:28 am
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

Sorry, just worked the first time (???).
After restarting my application, the paste showed the same behaviour as before ... :(
Always the editor, that got the focus by user gets the pasted data...

Any ideas?

Best regards
cew
by cew
Mon Jun 03, 2019 9:06 am
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Re: Paste not working properly SOLVED

Sasha - Tracker Dev Team wrote: Mon Jun 03, 2019 8:43 am Hello cew,

Maybe try focusing the Editor first?

Code: Select all

Editor.Focus()
Cheers,
Alex
Life can be so easy :)

Thank you! Best care anywhere :wink:
by cew
Mon Jun 03, 2019 5:37 am
Forum: PDF-XChange Editor SDK
Topic: Paste not working properly SOLVED
Replies: 19
Views: 3710

Paste not working properly SOLVED

Hi there, in scenario I have 2 instances of PDF editors in the UI. If I call the paste command like: Editor.Inst.ExecUICmd("cmd.paste"); allways the editor gets the data from clipboard, that was focused by the user. Not the one that is referred to in my control. Before calling the paste co...
by cew
Thu Oct 25, 2018 5:20 am
Forum: PDF-XChange Editor SDK
Topic: How to allways show navigation bar in fullscreen mode?
Replies: 7
Views: 2205

Re: How to allways show navigation bar in fullscreen mode?

Hi, as I wrote above, the editor behaves as you have described. But if the user does not notice the bar, he's caugth in the full fullscreen mode and has no idea how to get back to normal view. Is there a way to sets it to be visible so I could use e.g. a timer that does this job every 2 seconds? Bes...
by cew
Wed Oct 24, 2018 6:12 pm
Forum: PDF-XChange Editor SDK
Topic: How to allways show navigation bar in fullscreen mode?
Replies: 7
Views: 2205

Re: How to allways show navigation bar in fullscreen mode?

Sasha - Tracker Dev Team wrote:From what I know when you click on the place where it should be - it should appear again.
I just tried it, you're right.
But... how the hell should the user be aware of that? :)


Is there a way to disable the hiding the control?

Best regards,
cew
by cew
Wed Oct 24, 2018 12:56 pm
Forum: PDF-XChange Editor SDK
Topic: How to allways show navigation bar in fullscreen mode?
Replies: 7
Views: 2205

Re: How to allways show navigation bar in fullscreen mode?

That does not make a difference. I would set it in code at the editors initialization. Even if the checkbox is activated, the navigation bar disappears after aabout 5 seconds. Then it's not possible to navigate without a keyboard, because the navigation bar only gets visible on mouse over. If you ha...
by cew
Wed Oct 24, 2018 11:40 am
Forum: PDF-XChange Editor SDK
Topic: How to allways show navigation bar in fullscreen mode?
Replies: 7
Views: 2205

How to allways show navigation bar in fullscreen mode?

Hi all!

How can I force the navigation bar to be allways visible in fullscreen mode?
On a mobile device, you can't navigate without that, even when "Show Pages Navigation Bar" is set in the preferences.

Best regards
cew
by cew
Wed Oct 24, 2018 11:37 am
Forum: PDF-XChange Editor SDK
Topic: User can not exit fullscreen mode on mobile device
Replies: 3
Views: 1210

Re: User can not exit fullscreen mode on mobile device

Thank you!

Best regards!
cew
by cew
Wed Oct 24, 2018 10:13 am
Forum: PDF-XChange Editor SDK
Topic: User can not exit fullscreen mode on mobile device
Replies: 3
Views: 1210

User can not exit fullscreen mode on mobile device

Hi there, there is a problem if the user uses a mobile device and is in fullscreen mode. If he reached the last page of a document and clicks it, the screen gets dark and he is not able to leave the fullscreen mode again. Setting the fullscreen option "Loop after last page", he does not ru...
by cew
Fri Jun 08, 2018 6:37 am
Forum: PDF-XChange Editor SDK
Topic: How to view attached pdf in single document mode? SOLVED
Replies: 8
Views: 3063

Re: How to view attached pdf in single document mode? SOLVED

We got it to work!
A big compliment to all people that were involved in solving this problem!

Thank you!!
by cew
Sat May 19, 2018 8:29 am
Forum: PDF-XChange Editor SDK
Topic: How to view attached pdf in single document mode? SOLVED
Replies: 8
Views: 3063

Re: How to view attached pdf in single document mode? SOLVED

Hi Alex,

great, thank you!

I'll keep you informed about the result.

Best regards
cew
by cew
Wed May 16, 2018 5:16 am
Forum: PDF-XChange Editor SDK
Topic: How to view attached pdf in single document mode? SOLVED
Replies: 8
Views: 3063

Re: How to view attached pdf in single document mode? SOLVED

Hi Vasyl,
Vasyl-Tracker Dev Team wrote: This issue will be fixed in next build. Thanks for report.
do you have a timeline when the next build will be released?

Best regards,
cew
by cew
Tue May 15, 2018 2:48 pm
Forum: PDF-XChange Editor SDK
Topic: How to view attached pdf in single document mode? SOLVED
Replies: 8
Views: 3063

How to view attached pdf in single document mode? SOLVED

Hi there, using version 6.0 (Build 322.5) we have the problem that attachments are not shown in the editor if the open command is selected. The current documents just gets closed and the background is visible. Because we do not want the user to open multiple documents at the same time, we set Editor...
by cew
Tue Jul 04, 2017 5:52 am
Forum: PDF-XChange Editor SDK
Topic: Send by Email crashes for documents read by stream
Replies: 7
Views: 1951

Re: Send by Email crashes for documents read by stream

Hi Alex,

... and as far as I could see, it works with the 322.5 :D

Thank you!

Best regards,
cew
by cew
Mon Jul 03, 2017 4:56 am
Forum: PDF-XChange Editor SDK
Topic: Send by Email crashes for documents read by stream
Replies: 7
Views: 1951

Re: Send by Email crashes for documents read by stream

Hi Alex,

has this issue been fixed in the current 6.0.322.5?
I looked into the version history, but there is no info for this release available at all.

Best regards,
cew
by cew
Fri Jun 23, 2017 11:03 am
Forum: PDF-XChange Editor SDK
Topic: How toi detect which operation will be/was executed?
Replies: 7
Views: 1897

Re: How toi detect which operation will be/was executed?

Got it to work, thank you! :D

Best regards,
cew
by cew
Fri Jun 23, 2017 8:03 am
Forum: PDF-XChange Editor SDK
Topic: How toi detect which operation will be/was executed?
Replies: 7
Views: 1897

Re: How toi detect which operation will be/was executed?

Hi Alex,

could you please provide me a line of c# code on how to get that flag out of an AxPDFXEdit._IPXV_ControlEvents_OnEventEvent object?

Thank you!

Best regards,
cew
by cew
Fri Jun 23, 2017 7:51 am
Forum: PDF-XChange Editor SDK
Topic: How toi detect which operation will be/was executed?
Replies: 7
Views: 1897

Re: How toi detect which operation will be/was executed?

Hi Alex,
to be honest, I don't want to create an own command handler. That would be a bit overpowered for just getting the info, which command got executed.
How do I get the existing events e_operBeforeExecute,and e_operExecuted?

Best regards,
cew
by cew
Fri Jun 23, 2017 7:47 am
Forum: PDF-XChange Editor SDK
Topic: Send by Email crashes for documents read by stream
Replies: 7
Views: 1951

Re: Send by Email crashes for documents read by stream

Great, thank you!

Best regards,
cew
by cew
Fri Jun 23, 2017 7:34 am
Forum: PDF-XChange Editor SDK
Topic: How toi detect which operation will be/was executed?
Replies: 7
Views: 1897

How toi detect which operation will be/was executed?

Hi there, I have to know, if the user called "Save" or "Save as Copy". Therefore I registered the events e_operBeforeExecute,and e_operExecuted, But if the user executes the command from file menür or via icon, only the events e_document_beforeSave and later e_document_afterSave ...
by cew
Fri Jun 23, 2017 6:49 am
Forum: PDF-XChange Editor SDK
Topic: Send by Email crashes for documents read by stream
Replies: 7
Views: 1951

Send by Email crashes for documents read by stream

Hi, using the "Send by Email" crashes the application when the document got opened by stream. This also occurres with the current version 6.0.322.4. Some data from the Application Event Log: - <System> <Provider Name="Application Error" /> <EventID Qualifiers="0">1000</...
by cew
Fri Mar 03, 2017 12:47 pm
Forum: PDF-XChange Editor SDK
Topic: Opening documents gets slower each time SOLVED
Replies: 13
Views: 3905

Re: Opening documents gets slower each time SOLVED

Hi,
mash_inc wrote:Is there something else that needs to be done to when closing an editor?
E.g. Is it required to call Dispose() at some point?
Is there any information on these questions in the described use?

Best regards,
cew
by cew
Fri Feb 24, 2017 1:23 pm
Forum: PDF-XChange Editor SDK
Topic: System.ArgumentException (IPropertyNotifySink) on EndInit() SOLVED
Replies: 4
Views: 1970

Re: System.ArgumentException (IPropertyNotifySink) on EndIni SOLVED

Hello Alex,

thank you for the hint. I'll have a look at it.

Best regards,
cew
by cew
Wed Feb 22, 2017 12:34 pm
Forum: PDF-XChange Editor SDK
Topic: System.ArgumentException (IPropertyNotifySink) on EndInit() SOLVED
Replies: 4
Views: 1970

System.ArgumentException (IPropertyNotifySink) on EndInit() SOLVED

Hi, using the PDFXChange Editor within a UserControl that is used within a WindowsFormsHost (WPF) causes an System.ArgumentException when EndInit() is called in the designer file: Exception thrown: 'System.ArgumentException' in System.Windows.Forms.dll PDFControl.Designer.cs: private void Initialize...
by cew
Wed Feb 08, 2017 7:02 am
Forum: PDF-XChange Editor SDK
Topic: Remove standard stamp
Replies: 13
Views: 3814

Re: Remove standard stamp

Hello Alex, Additionally, you can update your project so that this code will be launched when the Stamps View is shown and thus you will get the desired behavior. In https://www.pdf-xchange.com/forum3/viewtopic.php?f=66&t=28060&p=108751&e=p108751 you wrote, that there is no event to get ...
by cew
Tue Feb 07, 2017 3:03 pm
Forum: PDF-XChange Editor SDK
Topic: Remove standard stamp
Replies: 13
Views: 3814

Re: Remove standard stamp

Hello Ivan, even if the specification says, that readers "shall" provide the default stamps, it's not a "has to" and the developer, using your SDK should be able to supress them. If it's to difficult for you to implement that, it would be nice, if the editor could open the stamps...
by cew
Thu Jan 19, 2017 9:53 am
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Hi Alex, is it possible to get a direct contact using email to able to show you (or Vasyl) our concrete usage of the editor? Maybe our problems will get more clear. Using the forum just takes too much time and is too inefficient to solve the problems for the upgrade from Viewer to Editor. Best regar...
by cew
Thu Jan 19, 2017 7:30 am
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Hi Vasyl,

sorry, but your solution does not fit to our requirements :(
Could you please write me a private mail, so I can tell you in details what we try to achieve.
This would be much more effective.

Best regards,
cew
by cew
Thu Jan 19, 2017 6:29 am
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Hi Vasyl,

thank you for the fix. I will try to adopt them to our solution.

What I already saw is, that the editor does not jump to the first search result.
How can this be done? Using javascript?


Best regards,
cew
by cew
Wed Jan 18, 2017 3:01 pm
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Ok, that works, but.... I changed the sample to our real world scenario, where we have two editors on different tabs. If you start search in editor 1, the search windows appears for editor 1, but is allways on top, even if you select the secodn tab page containing editor 2. The find windows stays at...
by cew
Wed Jan 18, 2017 11:15 am
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Steps to reproduce with the given sample: 1. Click Document -> "Click to Show Open Dialog" 2. Select document for editor pdfCtl 3. Select document for editor pdfCtl2 4. Change to tab "Find" 5. Click one of the buttons. Nothing will happen. (The textbox "Search for" is n...
by cew
Wed Jan 18, 2017 7:46 am
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Nothing happens if I call

Code: Select all

Editor.Inst.ExecUICmd("cmd.find", Editor.Frame.Obj);
:(
by cew
Wed Jan 18, 2017 6:28 am
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

How do I get the MainView using c#?

Best regards,
cew
by cew
Tue Jan 17, 2017 3:40 pm
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Why does Editor.Inst.ExecUICmd("cmd.find"); opens the find window in multiple editors?? I have 3 editors running and 2 of them show the find window. Btw. the similar call of Editor.Inst.ExecUICmd("cmd.print"); Just prints the current document and not all documents opened in all t...
by cew
Tue Jan 17, 2017 2:17 pm
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

.. and everything is working for both of them. That's the point! It should just work on that editor, I decide to search within. E.g. use 2 edit boxes and buttons. The first pair for search within editor 1 and the second pair to search within editor 2. Just imagine these editors are located on diffe...
by cew
Tue Jan 17, 2017 12:09 pm
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Hi Alex,

nice trick, but it does not work, if you have multiple editor instances in your form.

It would be a good idea, if you add a second editor to your FullDemo-Application and check your functionality.
Because having more than one editor is a real world scenario....


Best regards,
cew
by cew
Mon Jan 16, 2017 4:11 pm
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Hi Alex, Right now, the Find window is pasting the selected text inside it, if present. Or do you need your custom text to be shown there? I want to trigger a search by code. What do you mean with " the Find window is pasting the selected text inside it "? if I call: Editor.Inst.ExecuteJS(...
by cew
Mon Jan 16, 2017 3:16 pm
Forum: PDF-XChange Editor SDK
Topic: howto search and jumpt to first result?
Replies: 3
Views: 1150

howto search and jumpt to first result?

Hi there, how can I do a search with selecting the first search result? My first approach was to do a search using javascript. That works pretty well, but ... 1. How can I supress the "big" search pane without loosing the search result? 2. How can I force the editor to jumpt to the first r...
by cew
Mon Jan 16, 2017 1:28 pm
Forum: PDF-XChange Editor SDK
Topic: Find Previous and Next Text without Find Window showing
Replies: 33
Views: 7947

Re: Find Previous and Next Text without Find Window showing

Hi Alex,

I have nearly the same problem. For me it would be ok if the user would see the find popup and could use the build in next/prev buttons.
But how can I set the search text for the find command ("cmd.find")?

Best regards,
cew