What I want to do is the following:
- When I'll make a click action on the button1 I want to move my "avi" one frame forward.
- When I'll make a click action on the button2 I want to move my "avi" one frame backward.
I resolved the first point like this:
private void button2_Click(object sender, EventArgs e)
{
((WMPLib.IWMPControls2)axWindowsMediaPlayer1.Ctlcontrols).step(1);
}
but I have no idea how can I resolve second point (frame backward), step(-1)
doesn’t work. I'll glad for any help in this case.