Enter Keywords:
1 - 10 of 59(0.015 seconds)
Sort By:
 
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 Rating: 4.2 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 Rating: 6.0 Views: 9
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 Rating: 6.0 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 Rating: 9.0 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 Rating: 9.0 Views: 54
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 Rating: 8.2 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 Rating: 7.4 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 Rating: 9.2 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 Rating: 9.6 Views: 0
My problem is that WM_KEYDOWN messages seem to stop getting picked up at a certain point in my hierarchy and I can't figure out why. in my WinApp pretranslate message: if(pMsg->message==WM_...
Zones: Windows MFCDate Answered: 05/05/2005 Rating: 5.4 Views: 0