Record and playback application

  • Thread starter Thread starter Johann
  • Start date Start date
J

Johann

Hi all,
I would like to know where do I start if I want to build an application that
records user events of an application and plays back them.
Johann
 
You might look at OpenNETCF and some of the multimedia stuff in there. I
think that there is at least one sample for waveform recording...

Paul T.
 
I think he wanted the "journaling" - i.e. being able to record and play back
all input events
 
There isn't enough of SetWindowsHook implemented to do that. You can
capture the low-level keyboard events, but you won't get taps and so on on
the screen. If you are just trying to record what happens to *one*
application, written in .NET CF, you might be able to do that with a
suitable ApplicationEx use (OpenNETCF, again). What is it, exactly, that
you're trying to accomplish with this?

Sorry to head off on a tangent!
Paul T.
 
I need to record the input/key events of an application and playback them
for testing.

Johann
 
I think that your only option would be to trap all events at the application
level, then. There is no journaling hook in CE, at this point.

Paul T.

Johann said:
I need to record the input/key events of an application and playback them
for testing.

Johann

Paul G. Tobey said:
There isn't enough of SetWindowsHook implemented to do that. You can
capture the low-level keyboard events, but you won't get taps and so on
on
the screen. If you are just trying to record what happens to *one*
application, written in .NET CF, you might be able to do that with a
suitable ApplicationEx use (OpenNETCF, again). What is it, exactly, that
you're trying to accomplish with this?

Sorry to head off on a tangent!
Paul T.

Johann said:
yes that's what I'm looking for, to record and play back input events.

Johann

I think he wanted the "journaling" - i.e. being able to record and
play
back
all input events

--
Alex Feinman
---
Visit http://www.opennetcf.org
"Paul G. Tobey [eMVP]" <ptobey no spam AT no instrument no spam DOT com>
wrote in message You might look at OpenNETCF and some of the multimedia stuff in there.
I
think that there is at least one sample for waveform recording...

Paul T.

Hi all,
I would like to know where do I start if I want to build an
application
that
records user events of an application and plays back them.
Johann
 
Back
Top