Click here to Skip to main content
15,887,436 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
private void Pan_Videoplay_Click(object sender, EventArgs e)
        {
            m_objMediaControl.Run();
        }

        private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {

        }

        private void Pan_videopause_Click(object sender, EventArgs e)
        {
            m_objMediaControl.Pause();
        }

        private void Pan_videostop_Click(object sender, EventArgs e)
        {
            m_objMediaControl.Stop();
        }

        private void Pan_forward_Click(object sender, EventArgs e)
        {
            //m_objMediaPosition.CurrentPosition= m_objMediaPosition.CurrentPosition + TimeSpan.FromSeconds(10);
            m_objMediaPosition.CurrentPosition = m_objMediaPosition.CanSeekForward();

        }




am using QuartzTypeLib namespace.......
i can able to do Play,Pause,Stop the video but i cant able to move forward and backward...........
Posted
Comments
Ed Nutting 10-Apr-12 10:10am    
Tried anything yourself for doing this? (other than play/pause etc.?) Bothered looking up the documentation for the library you are using or did you just come running to CP when it wasn't on an obvious auto-complete?

Please improve your question by detailing what you have tried to do, or look up the documentation and say what you have looked at (and provide a link to said documentation) or just delete your question. (Use the "Improve Question" link above to update your question).
Ed

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900