Search found 9 matches

by Rama
Thu Jan 25, 2018 9:00 pm
Forum: PDF-XChange Viewer SDK
Topic: Regarding Licencing of PDF Viewer
Replies: 1
Views: 2930

Regarding Licencing of PDF Viewer

Hi, I am currently using older version of PDF-Viewer.exe and having some issues with that. To avoid this, i tried upgrading to newer version and got water mark saying "Demo version" on the PDF's. Do i need to specify different SetDevInfo values for the newer version? Is that info changes w...
by Rama
Wed Nov 08, 2017 8:26 pm
Forum: PDF-XChange Viewer SDK
Topic: Viewer getting freezes at the time of annotations injecting
Replies: 12
Views: 6586

Re: Viewer getting freezes at the time of annotations injecting

Can you guys please expedite the help on this?

We are having more users complaining about freezing.

Thanks
Ram
by Rama
Tue Nov 07, 2017 11:16 pm
Forum: PDF-XChange Viewer SDK
Topic: Viewer getting freezes at the time of annotations injecting
Replies: 12
Views: 6586

Re: Viewer getting freezes at the time of annotations injecting

I tried the code example you mentioned and still users getting freezing once in a while. It happens at some percentage value as shown in the attached document. It is happening as i mentioned earlier at the time of document opening and injecting the annotations. Please provide me the code snippet of ...
by Rama
Tue Sep 19, 2017 4:49 pm
Forum: PDF-XChange Viewer (End Users)
Topic: How to increase size of the Search Box inside the viewer
Replies: 1
Views: 1774

How to increase size of the Search Box inside the viewer

Hi,

We have been trying to find out how to increase the size of the search text box on the tools bar. Currently it is is very small and only holding not more than 12 characters.

Thanks
Rama
by Rama
Tue Aug 15, 2017 9:14 pm
Forum: PDF-XChange Viewer SDK
Topic: Viewer getting freezes at the time of annotations injecting
Replies: 12
Views: 6586

Re: Viewer getting freezes at the time of annotations injecting

Do you guys have any update on this?

Do you have any sample projects in .Net which have some code snippets of how to show the pdf documents and record the annotations to database table. l

Thanks,
Rama
by Rama
Wed Aug 02, 2017 6:31 pm
Forum: PDF-XChange Viewer SDK
Topic: Viewer getting freezes at the time of annotations injecting
Replies: 12
Views: 6586

Re: Viewer getting freezes at the time of annotations injecting

My bad, I should have mentioned this in my previous post. I tried this _axViewer.RunJavaScript(jscript, out res, 0, PXCVA_Sync); but PXCVA_Sync is not recognizing in the code. Looks like it requires some DLL needs to be added. That is the reason why i replaced that with integer 0 as method expecting...
by Rama
Tue Aug 01, 2017 10:39 pm
Forum: PDF-XChange Viewer SDK
Topic: Viewer getting freezes at the time of annotations injecting
Replies: 12
Views: 6586

Re: Viewer getting freezes at the time of annotations injecting

I tried with below code. Still it is happening intermittently.
_axViewer.RunJavaScript(injection, out res, 0, 0);

Thanks
Rama
by Rama
Tue Jul 25, 2017 7:05 pm
Forum: PDF-XChange Viewer SDK
Topic: Viewer getting freezes at the time of annotations injecting
Replies: 12
Views: 6586

Re: Viewer getting freezes at the time of annotations injecting

Here it is : private void AnnotationsInject() { AnnotationsInjectInterface(); AnnotationAddToViewer(note); } private void AnnotationsInjectInterface() { try { string injection = ResourceManager.GetString(".ViewerInterface.js"); _axViewer.RunJavaScript(injection); } catch (Exception ex) { S...
by Rama
Wed Jul 12, 2017 6:35 pm
Forum: PDF-XChange Viewer SDK
Topic: Viewer getting freezes at the time of annotations injecting
Replies: 12
Views: 6586

Viewer getting freezes at the time of annotations injecting

Hi, I am using below event to inject annotations. It is always freezing. private void axViewer_OnEvent(object sender, AxPDFXCviewAxLib._IPDFXCviewEvents_OnEventEvent e) { if (e.name.EndsWith("ContentReady") ) { AnnotationsInject(); // this method we use to inject the annotions. } } Looks l...