Advertisement

1 - 10 of 57 containing alltags:("wm_keydown") (0 seconds)
I have the need to simulate keystrokes to an edit box within the same process, but am having a tough time sending CTRL+HOME and CTRL+END combinations.  I'm doing OK with sending HOME and END, etc, ...
Zones: Windows ProgrammingDate Answered: 05/22/1998 Grade: D Views: 0
I have to write an application that sends some keystrokes to other applications. I have to send them by using WM_KEYDOWN. Unfortunately, sometimes (too much...) the translation is wrong, and a wron...
Zones: Windows ProgrammingDate Answered: 07/29/1998 Grade: B Views: 80
I want to write a program which will trap every key stroke, so how do I trap every key down message that window95 receive (even when my program is not focused)
Zones: Windows MFCDate Answered: 09/01/1999 Grade: C Views: 0
I have made a dialog based application and i have some controls on top of it.. now i want to capture WM_KEYDOWN message for the dialog but since control on top of dialog are the active windows ... ...
Zones: Windows MFCDate Answered: 10/04/2000 Grade: A Views: 0
HOW DO I IMPLEMENT THE WM_CHAR ,WM_KEYDOWN, WM_KEYUP MESSAGES IN MY DIALOG BOX Application  I tried this out but it did not work why??? Void CASCIIDlg::OnKeyDown(UINT nChar, UINT nRepCnt, U...
Zones: Windows MFCDate Answered: 10/12/2003 Grade: A Views: 11
Here is part of the code i'm using... [DllImport("user32.dll")] public static extern int SendMessage( int hWnd, // handle to destination window uint Msg, // message int wParam, // first ...
Zones: C#Date Answered: 01/16/2003 Grade: A Views: 0
Ok, im a begginner in C++ and i want to make a program to run Keypresses, well a friend gave me an example command SendMessage(hwnd, WM_KEYDOWN, 0x57, 0); well, i know this presses the "W" ke...
Zones: C++Date Answered: 02/17/2004 Grade: A Views: 0
Hello, I am working with win32 serial communication in VC++. My application communicates with a Control Panel hardware device which is similar to a Keyboard. It has various keys/buttons (”0-9 di...
Zones: Windows MFCDate Answered: 02/08/2005 Grade: A Views: 0
Hi, If the user presses the shift-button it has to do 2 things put a variable in fLastAlt : char en execute a procedure called CapsOff How can i do that? Private fLastAlt: char ; proced...
Zones: Delphi ProgrammingDate Answered: 05/16/2006 Grade: A Views: 0
I'm trapping WM_KEYDOWN messages in PreTranslate Message and want to figure out if the user is pressing more than one Key in addition to the Ctrl Key. What is the best way to do that? Presently, I ...
Zones: Windows MFCDate Answered: 10/18/1997 Grade: C Views: 0