CmdDockPane of AxCoPDFXCview Control in MainForm.

PDF-XChange Viewer SDK for Developer's
(ActiveX and Simple DLL Versions)

Moderators: TrackerSupp-Daniel, Tracker Support, Vasyl-Tracker Dev Team, Chris - Tracker Supp, Sean - Tracker, Ivan - Tracker Software, Tracker Supp-Stefan

Post Reply
defcon8808
User
Posts: 64
Joined: Sat Dec 13, 2014 6:59 am

CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by defcon8808 »

hi. Moderators.

PDF-XChange Viewer(End-User Version) selected CmdDockPane(Top Main Menus) press ALT key.

but AxCoPDFXCview Control in MainForm not selected press ALT Key. And not occurred event Alt+F, Alt+E Etc.,..

i tried send "SendMessage" in Event "Global::CheckSysKey".

like below code..

Code: Select all

Dim destination As IntPtr = FindWindowEx(Me.Handle, 0, vbNullString, vbNullString)
SendMessage(destination, WM_KEYDOWN, VK_MENU, GetKeyDownLParam(1, &H38, 0, 0))
How solve it?
User avatar
John - Tracker Supp
Site Admin
Posts: 5219
Joined: Tue Jun 29, 2004 10:34 am
Location: United Kingdom
Contact:

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by John - Tracker Supp »

Hi,

Apologies for the delay - I have contacted the team member responsible directly and hope to have an answer from him later today when our Canadian office opens for business.

Thanks for your patience.
If posting files to this forum - you must archive the files to a ZIP, RAR or 7z file or they will not be uploaded - thank you.

Best regards
Tracker Support
http://www.tracker-software.com
User avatar
Vasyl-Tracker Dev Team
Site Admin
Posts: 2352
Joined: Thu Jun 30, 2005 4:11 pm
Location: Canada

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by Vasyl-Tracker Dev Team »

Hi, defcon8808.
PDF-XChange Viewer(End-User Version) selected CmdDockPane(Top Main Menus) press ALT key.
Sorry, but for some reasons this feature is turned off in ActiveX mode and is available only in end-user version.
Probably, in the next release we may add way to turn on it. This feature is still necessary to you?

Cheers.
Vasyl Yaremyn
Tracker Software Products
Project Developer

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
defcon8808
User
Posts: 64
Joined: Sat Dec 13, 2014 6:59 am

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by defcon8808 »

Vasyl-Tracker Dev Team wrote:Hi, defcon8808.
PDF-XChange Viewer(End-User Version) selected CmdDockPane(Top Main Menus) press ALT key.
Sorry, but for some reasons this feature is turned off in ActiveX mode and is available only in end-user version.
Probably, in the next release we may add way to turn on it. This feature is still necessary to you?

Cheers.
Yes. We are necessary this feature.
We will hope to add this feature.
User avatar
Vasyl-Tracker Dev Team
Site Admin
Posts: 2352
Joined: Thu Jun 30, 2005 4:11 pm
Location: Canada

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by Vasyl-Tracker Dev Team »

Hi, defcon8808.

In the next release you will be able to use new option on app. init time:

Code: Select all

pdfCtrl.SetProperty("View.AllowKeyboardCuesForMenu", true);
HTH.
Vasyl Yaremyn
Tracker Software Products
Project Developer

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
defcon8808
User
Posts: 64
Joined: Sat Dec 13, 2014 6:59 am

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by defcon8808 »

Vasyl-Tracker Dev Team wrote:Hi, defcon8808.

In the next release you will be able to use new option on app. init time:

Code: Select all

pdfCtrl.SetProperty("View.AllowKeyboardCuesForMenu", true);
HTH.
Thanks. :lol:
User avatar
Vasyl-Tracker Dev Team
Site Admin
Posts: 2352
Joined: Thu Jun 30, 2005 4:11 pm
Location: Canada

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by Vasyl-Tracker Dev Team »

Also, we made the technical build - you may try to use it before publishing of new official release.

http://docu-track.co.uk/PDFXCviewAx.317.1.A.zip

Cheers.
Vasyl Yaremyn
Tracker Software Products
Project Developer

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
defcon8808
User
Posts: 64
Joined: Sat Dec 13, 2014 6:59 am

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by defcon8808 »

Vasyl-Tracker Dev Team wrote:Also, we made the technical build - you may try to use it before publishing of new official release.

http://docu-track.co.uk/PDFXCviewAx.317.1.A.zip

Cheers.
hi. i try below code.(write code is VB.NET)

Code: Select all

AxCoPDFXCview1.SetProperty("View.AllowKeyboardCuesForMenu", "True") 
Or

Code: Select all

AxCoPDFXCview1.SetProperty("View.AllowKeyboardCuesForMenu", 1)
"Invalid Argument" error occur.

i tried check item.

1. AxCoPDFXCview1 control AllowAcceleators Attribute - True
2. PDFXCview.exe, PDFXCviewAx.dll - re-registered.
3. Technical Build Version copied.

check plz.

cheers. :D
User avatar
Vasyl-Tracker Dev Team
Site Admin
Posts: 2352
Joined: Thu Jun 30, 2005 4:11 pm
Location: Canada

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by Vasyl-Tracker Dev Team »

I checked it again and yesterday technical build is correct and it contains the new option "View.AllowKeyboardCuesForMenu". And setting this option works well on my machine.

Please check again all sdk-files on your side: you must replace ALL existing files by new OR register new files in your system. Also I provided only 32-bit files, so, when your app. is 64-bit - it will not work for you because it also requires new 64-bit sdk-files to be installed in your system too..

HTH.
Vasyl Yaremyn
Tracker Software Products
Project Developer

Please archive any files posted to a ZIP, 7z or RAR file or they will be removed and not posted.
defcon8808
User
Posts: 64
Joined: Sat Dec 13, 2014 6:59 am

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by defcon8808 »

defcon8808 wrote:
Vasyl-Tracker Dev Team wrote:Also, we made the technical build - you may try to use it before publishing of new official release.

http://docu-track.co.uk/PDFXCviewAx.317.1.A.zip

Cheers.
hi. i try below code.(write code is VB.NET)

Code: Select all

AxCoPDFXCview1.SetProperty("View.AllowKeyboardCuesForMenu", "True") 
Or

Code: Select all

AxCoPDFXCview1.SetProperty("View.AllowKeyboardCuesForMenu", 1)
"Invalid Argument" error occur.

i tried check item.

1. AxCoPDFXCview1 control AllowAcceleators Attribute - True
2. PDFXCview.exe, PDFXCviewAx.dll - re-registered.
3. Technical Build Version copied.

check plz.

cheers. :D
i check "PDFXCview.exe, PDFXCviewAx.dll" re-registered.

i haven't administrator authority. register work was not well.

i get it. then re-registered.

so. work very well. :lol:

Thank you so much. :D

Cheers!
User avatar
Tracker Supp-Stefan
Site Admin
Posts: 17824
Joined: Mon Jan 12, 2009 8:07 am
Location: London
Contact:

Re: CmdDockPane of AxCoPDFXCview Control in MainForm.

Post by Tracker Supp-Stefan »

Hello defcon8808,

So If I understood you correctly - everything is fine now and we can consider this case resolved!

Cheers,
Stefan
Post Reply