Click here to Skip to main content
15,887,947 members
Articles / Programming Languages / C++
Article

Journaling Input Events

Rate me:
Please Sign up or sign in to vote.
4.84/5 (17 votes)
3 Mar 2001 135.3K   4K   54   29
A tool for recording and playback of keyboard and mouse input
  • Download source files - 18 Kb
  • Download demo project - 74 Kb
  • Sample Image - HookManager.jpg

    Introduction

    This is an example for installing an application-defined hook procedures using Win32 SetWindowsHookEx() function. This project implements only WH_JOURNALRECORD and WH_JOURNALPLAYBACK hooks. I was looking for more information and sample programs, but the only sample I'd found was Hooks32, an old Win32 project. Because I didn't find any information about these problems into the developer sites (which I know), I decided to publish this simple tool.

    The application can be used to automate some routine tasks, for example - testing. Start the target application, launch the HookManager, and press the "Start Recording" button. Then HookManager minimizes itself and starts tracking keyboard and mouse events. When the recording is started, pressing CTRL+BREAK can stop it. Windows stops the recording and playback if the user presses CTRL+ALT+DEL or CTRL+ESC, which generates WM_CANCELJOURNAL system message. But, be careful when you are journaling the mouse events! The recorded mouse events are with the current pointer coordinates, and if you close the target application and open it again, it will appear on different position, so the mouse events will go to wrong place.

    This tool can be extended to do some more things. For example: the recorded events can be edited by changing the keystrokes (with different form data, etc.). But this is very precise work, because every pressed button generates 2 messages - WM_KEYDOWN and WM_KEYUP. The generated character depends from the state of other buttons - CTRL, SHIFT, CAPSLOCK, etc.

    I haven't tested the application on Windows NT yet, but with Win98 it works well. I will be glad to receive ideas about extending the functionality.

    Plamen Petrov, Varna, Bulgaria

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    Software Developer
    Bulgaria Bulgaria
    see www.geocities.com/plamen_petrov2000

    Comments and Discussions

     
    Generalutility to record mouse and keyboard inputs Pin
    Member 1096510122-Jul-14 21:09
    Member 1096510122-Jul-14 21:09 
    QuestionMouse cursor disappears Pin
    Chris Hills2-Mar-10 11:54
    Chris Hills2-Mar-10 11:54 
    GeneralVista Pin
    B4stard9-Aug-07 16:27
    B4stard9-Aug-07 16:27 
    GeneralThank you Pin
    jrivero19-Jan-07 9:57
    jrivero19-Jan-07 9:57 
    Questionedit recorded events....? Pin
    rm_pkt7-Nov-06 23:46
    rm_pkt7-Nov-06 23:46 
    QuestionHow to capture the time user types the keyboard Pin
    imagica2-Nov-06 6:44
    imagica2-Nov-06 6:44 
    QuestionJournalRecord and JournalPlayback on "Windows CE"?? Pin
    ponian23-Aug-06 0:03
    ponian23-Aug-06 0:03 
    GeneralRe: JournalRecord and JournalPlayback on "Windows CE"?? Pin
    ponian23-Aug-06 0:08
    ponian23-Aug-06 0:08 
    GeneralVS.NET users (VC7.1 +) - Compiler Error C2316 Pin
    Intellex15-Aug-05 8:18
    Intellex15-Aug-05 8:18 
    GeneralMonitorize mouse global events in WINDOWS-CE; Pin
    XBSANTOS4-May-05 1:45
    XBSANTOS4-May-05 1:45 
    Monitorize mouse global events in WINDOWS-CE;

    Hello,

    I'm working in VISUAL C++ embedded 3.0. with Windows CE. My goal is to monitorize mouse global events.
    By the moment I'm working with a WH_JOURNALRECORD global hook that catches all input global events of the

    operating system, basically keyboard and mouse events. But when I catch a mouse event, it only gives me
    information about the application that receives this event, and the position (x,y) where the user pushes
    in the PDA's screen. I want to know, for example, if the user clicks one option in a menu, so what option
    the user clicks, or if it clicks a desktop icon, so i want to know icon's name, and so on.

    I want to make a program for windows CE mobile devices, like Smartphones and PocketPCs, and the goal of the
    program will be monitorize all mouse global events in order to help the user in his navegation in the system. I

    want to make a program like "Narrator.exe" of Windows XP, that processes all mouse events and after a speech

    voice synthetizer says the option that the user clicks. Is this possible in Windows CE? Microsoft says that NO,

    because in windows ce isn't support COM Architecture due to the specific capabilities of the hardware in the

    mobile devices because we are speaking of embedded systems.

    So, someone can help me, please?

    Thank you very much,

    SIncerely,

    javitobcn


    hola
    GeneralRe: Monitorize mouse global events in WINDOWS-CE; Pin
    Rahul P. Shukla28-Jun-07 22:27
    Rahul P. Shukla28-Jun-07 22:27 
    GeneralMacro Pin
    Saiprabhu28-Jun-04 18:55
    professionalSaiprabhu28-Jun-04 18:55 
    QuestionHow to catch Ctrl-C Pin
    Will25-Jun-03 4:48
    Will25-Jun-03 4:48 
    QuestionKeyboard only - doesn't work? Pin
    Will24-Jun-03 22:32
    Will24-Jun-03 22:32 
    AnswerRe: Keyboard only - doesn't work? Pin
    Will24-Jun-03 22:48
    Will24-Jun-03 22:48 
    QuestionHow to control your event play times.? Pin
    Anonymous12-May-03 22:26
    Anonymous12-May-03 22:26 
    AnswerRe: How to control your event play times.? Pin
    Plamen Petrov12-May-03 22:48
    professionalPlamen Petrov12-May-03 22:48 
    GeneralRe: How to control your event play times.? Pin
    Wayne Gibson16-Sep-03 4:44
    Wayne Gibson16-Sep-03 4:44 
    GeneralIt can't work well with win98!!! Pin
    zhouhj5-Jan-03 3:51
    zhouhj5-Jan-03 3:51 
    GeneralRe: It can't work well with win98!!! Pin
    zhouhj5-Jan-03 16:40
    zhouhj5-Jan-03 16:40 
    GeneralLast character has been gone Pin
    Anonymous7-Sep-02 7:06
    Anonymous7-Sep-02 7:06 
    GeneralThis source code are OK Pin
    Rousset de Pina17-Feb-02 10:00
    Rousset de Pina17-Feb-02 10:00 
    GeneralDON'T DO IT Pin
    13-Feb-02 13:15
    suss13-Feb-02 13:15 
    GeneralRe: DON'T DO IT Pin
    Rousset de Pina17-Feb-02 9:54
    Rousset de Pina17-Feb-02 9:54 
    GeneralRe: DON'T DO IT Pin
    Anonymous3-Oct-02 3:08
    Anonymous3-Oct-02 3:08 

    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.