show/hide this revision's text 2 added 195 characters in body

As has been alluded to by other posters here, there are commercial products that do this sort of thing. If you want to write your own you need to create what is called a System Hook DLL. This can be done in C++ fairly simply. If you create one, you can probably integrated it easily using pinvoke. In fact, I would start by look at pinvoke.net for people who have already done something similar.

A hook DLL allows you to intercept all mouse and keyboard events. You can also inject mouse and keyboard events. So if you put these two together: intercept = record, and inject = playback.

Here's a good list of articles to get you started: Code Project Hook DLLs

show/hide this revision's text 1

As has been alluded to by other posters here, there are commercial products that do this sort of thing. If you want to write your own you need to create what is called a System Hook DLL. This can be done in C++ fairly simply. If you create one, you can probably integrated it easily using pinvoke. In fact, I would start by look at pinvoke.net for people who have already done something similar.

A hook DLL allows you to intercept all mouse and keyboard events. You can also inject mouse and keyboard events. So if you put these two together: intercept = record, and inject = playback.