This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Thursday, September 24, 2009 7:42:16 PM(UTC)
Groups: Registered
Posts: 7
Hello, Dear
I'm using Document Imaging 13 SDK.
I want to use a function of contextmenu not using a mouse button but using sendmessage method.
Is there any way?
Please, tell me how to do.....
Thank you.
#2
Posted
:
Sunday, September 27, 2009 6:49:07 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
Do you mean you want to display our Annotations context menu programmatically without having to make the user right-click with the mouse?
If yes, please tell me which LEADTOOLS programming interface (Main OCX, .NET classes, DLL API, C++ Classes, etc.) you are using.
#3
Posted
:
Sunday, September 27, 2009 3:37:02 PM(UTC)
Groups: Registered
Posts: 7
Yes, that's it.
I'm using C++ Classes and DLL API.
My development tool is VS 6.0.
Main frame is developed on base C++ Classes.
#4
Posted
:
Monday, September 28, 2009 7:44:59 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
You can simulate the context menu keyboard key being pressed by calling the following 2 Windows API functions:
keybd_event(VK_APPS, 0, 0, 0);
keybd_event(VK_APPS, 0, KEYEVENTF_KEYUP, 0);
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.