Click here to Skip to main content
15,867,594 members
Articles / Desktop Programming / MFC
Article

CKeystrokeEngine

Rate me:
Please Sign up or sign in to vote.
4.98/5 (30 votes)
21 Jun 2004CPOL4 min read 301.2K   7.7K   108   89
A set of classes used to send keystrokes to a selected window

Image 1

Introduction

CKeystrokeEngine was originally written to allow users of my product, Macro Angel, to send keystrokes to the active or to a selected window. Its functionality is similar to VB's SendKeys's functionality, but it allows more complex operations. In addition to sending keystrokes to the active window, by the help of CWindowEngine (which was also written for Macro Angel), it can send keystrokes to only a specified window.

A simple CKeystrokeEngine expression looks like this:

Hello CPians<ENTER><REPEAT 10>I love CP <END_REPEAT><ENTER>http://www.macroangel.com

All special keys are put between '<' and '>' characters. For example to simulate an Enter key, you should use <ENTER>. Or to press Shift key, use <SHIFT>. Here are some more examples:

  • To send Ctrl+A use <CTRL>A
  • To send Alt+F4 use <ALT><F4>
  • To send Ctrl+Alt+Shift+A use <CTRL+ALT+SHIFT>A
  • You can also use <CTRL+ALT>, <CTRL+SHIFT> and <ALT+SHIFT>
  • To hold Shift key and many keys, use <SHIFT_LOCK>write your keys here<SHIFT_UNLOCK>
  • You can also use <ALT_LOCK>, <ALT_UNLOCK>, <CTRL_LOCK> and <CTRL_UNLOCK>
  • To add a delay use <DELAY xxx> where xxx is the amount of time in miliseconds. For example, <DELAY 1500> waits 1.5 seconds.
  • To repeat a sequence of keys 100 times, use <REPEAT 100>you keys here<END_REPEAT>. Please note that nested repeats are not supported

All other keys are listed in the sample application. Here are the public functions of CKeystrokeEngine

CKeystrokeEngine (const CString &sKeys);

void SetPause (bool bPause, int nPause);
void SetSendToWnd (bool bSendToWnd);
// if lpszTitle == NULL, then the feature is disabled
void SetWndTitle (LPCSTR lpszTitle);
// if lpszClass == NULL, then the feature is disabled
void SetWndClass (LPCSTR lpszClass);
void SetExactMatch (bool bExact);
void SetCaseSensitive (bool bCaseSensitive);
void SetReActivate (bool bReactivate, int nMiliseconds);

// Tadaaa. Here is the best function...
bool SendKeys ();

SetPause (bool bPause, int nPause)<br>
Adjusts how much time CKeystrokeEngine should wait in-between each key-press when sending keystrokes. On some faster machines, CKeystrokeEngine may type the keys too quickly, flooding the keyboard buffer and causing unpredictable results. Increasing this setting will prevent this from occurring.

SetSendToWnd (bool bSendToWnd)<br>
If bSendToWnd is true, then CKeystrokeEnginesends all keystrokes to a specified window. By this way, sending keystrokes to wrong windows is prevented.

If bSendToWnd is set to false, then active window gets all keystrokes.

SetWndTitle (LPCSTR lpszTitle)<br>
Sets the window title, to which the keystrokes will be sent. If lpszTitle is set to NULL, then CKeystrokeEngine does not searh for a window title. Note that this is effective only if SetSendToWnd (true) is used.

SetWndClass (LPCSTR lpszClass)<br>
Sets the window class, to which the keystrokes will be sent. If lpszClass is set to NULL, then CKeystrokeEngine does not search for a window class. Note that this is effective only if SetSendToWnd (true) is used.

SetExactMatch (bool bExact)<br>
Specified whether the Windows title entered is a partial title match or must match exactly. When set to false,CKeystrokeEngine will search for window titles that contain that text. Note that this is effective only if SetSendToWnd (true) is used.

SetCaseSensitive (bool bCaseSensitive)<br>
If enabled, Window Title/Window Class and Text searches would be case sensitive. Note that this is effective only if SetSendToWnd (true) is used.

SetReActivate (bool bReActivate, int nMiliseconds)<br>
If bReActivate is set to true, then CKeystrokeEngine automatically re-activates the window whenever it looses focus. If 0 seconds is entered, then the window is immediately activated when it looses focus. Otherwise, CKeystrokeEngine waits for the specified amount of time and then re-activates the window.

Adding a delay before re-activating windows prevents collisions between applications that are trying to send keystrokes at the same time.

Note that this is effective only if SetSendToWnd (true)is used. Also, if bReActivate is set to false, and specified window looses focus, then SendKeys () function returns false.

bool SendKeys ()<br>
Finally, this functions sends the keys with the specifed options. Use this function setting all attributes of CSendKeystrokes.

To get more information about the supported keywords, please use the sample application...

Some points that you should keep in mind

  • To use CKeystrokeEngine in your applications, copy KeystrokeEngine.cpp, KeystrokeEngine.h, WindowEngine.cpp and WindowEngine.h into your project and include KeystrokeEngine.h in your cpp file.
  • This class uses its own syntax, instead of using VBs SendKeys () syntax. Please don't want me to change the syntax. My customers are really happy with this syntax :)
  • This class is not used in the current version of Macro Angel. It will be used in the next version. Current version uses the same syntax, but the implementation is not as good as this. But this is class is not tested yet and may include some bugs. Please send me the bugs, so that I can fix them. If you find a bug, please send me the String that causes is not working properly. Also, please send me the real output and the expected output.
  • If you have any suggestions, please let me know.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionCan not Compile In VC.NET2003, Miss Afximpl.h Pin
zhbjhwli13-Mar-04 15:38
zhbjhwli13-Mar-04 15:38 
AnswerRe: Can not Compile In VC.NET2003, Miss Afximpl.h Pin
Mustafa Demirhan13-Mar-04 23:05
Mustafa Demirhan13-Mar-04 23:05 
GeneralImplementation part of that version of MFC used in this applicaiton Pin
Herbert Yu17-Jan-05 10:24
Herbert Yu17-Jan-05 10:24 
GeneralProblem with WinXP Pin
dressman198120-Jan-04 8:18
dressman198120-Jan-04 8:18 
GeneralRe: Problem with WinXP Pin
Mustafa Demirhan20-Jan-04 9:50
Mustafa Demirhan20-Jan-04 9:50 
GeneralRe: Problem with WinXP Pin
dressman198120-Jan-04 19:25
dressman198120-Jan-04 19:25 
GeneralRe: Problem with WinXP Pin
Mustafa Demirhan20-Jan-04 22:19
Mustafa Demirhan20-Jan-04 22:19 
GeneralRe: Problem with WinXP Pin
dressman198120-Jan-04 23:28
dressman198120-Jan-04 23:28 
Hello,

I tested it with a delay...and it doesn't work.
After I used your new code, it is also the same problem. Cry | :((

But I found the error. Not the left Alt-key is send, the right Alt-key is send to the window.
In german the key have the name AltGr.

For example:

If I send [ALT]ß to the notepad, the key AltGr and the key " ?ß\" is send, the result in the notepad window is the sign: \

An other example: [ALT]9 --> result in Notepad: ]
key 9 = )9]

What can I do, that the left Alt-key would be used??? Confused | :confused:

In the WinUser.h the following key's are defined:
#define VK_MENU 0x12
#define VK_LMENU 0xA4 // The key, which shoul be send???
#define VK_RMENU 0xA5
GeneralRe: Problem with WinXP Pin
Mustafa Demirhan21-Jan-04 8:52
Mustafa Demirhan21-Jan-04 8:52 
GeneralRe: Problem with WinXP Pin
dressman198121-Jan-04 9:40
dressman198121-Jan-04 9:40 
GeneralRe: Problem with WinXP Pin
dressman198121-Jan-04 9:40
dressman198121-Jan-04 9:40 
GeneralRe: Problem with WinXP Pin
dressman198122-Jan-04 2:30
dressman198122-Jan-04 2:30 
GeneralBug: SendKeys produces memory leaks Pin
ThoRa15-May-03 21:57
ThoRa15-May-03 21:57 
GeneralRe: Bug: SendKeys produces memory leaks Pin
Mustafa Demirhan15-May-03 22:08
Mustafa Demirhan15-May-03 22:08 
GeneralRe: Bug: SendKeys produces memory leaks Pin
ThoRa18-May-03 20:28
ThoRa18-May-03 20:28 
GeneralSome suggestion Pin
Davide Zaccanti13-Apr-03 21:03
Davide Zaccanti13-Apr-03 21:03 
Generalfirst thanks - then starter code simply to press key when invoked Pin
Michael Andras4-Apr-03 3:26
sussMichael Andras4-Apr-03 3:26 
GeneralRe: first thanks - then starter code simply to press key when invoked Pin
Mustafa Demirhan4-Apr-03 8:31
Mustafa Demirhan4-Apr-03 8:31 
GeneralError Compiling my own project. Pin
Ash Ketchum24-Feb-03 14:01
Ash Ketchum24-Feb-03 14:01 
GeneralRe: Error Compiling my own project. Pin
Mustafa Demirhan4-Mar-03 14:14
Mustafa Demirhan4-Mar-03 14:14 
GeneralRe: Error Compiling my own project. Pin
John Display10-Apr-03 9:29
John Display10-Apr-03 9:29 
GeneralRe: Error Compiling my own project. Pin
Mustafa Demirhan10-Apr-03 12:27
Mustafa Demirhan10-Apr-03 12:27 
GeneralRe: Error Compiling my own project. Pin
John Display10-Apr-03 22:17
John Display10-Apr-03 22:17 
GeneralBest i've ever found! Pin
haiyang20-Dec-02 16:50
haiyang20-Dec-02 16:50 
GeneralRe: Best i've ever found! Pin
Mustafa Demirhan20-Dec-02 19:20
Mustafa Demirhan20-Dec-02 19:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.