Re: Play Video In a Control
thank you very much for the submission... works great right off the bat... all i did was add a picturebox and a button... also runs in its own thread... with audio.... but question how would i say pause... and stop.... basically how would i control the video
thank you
Re: Play Video In a Control
Everything can be found under mciSendString Multimedia Command Strings.
But, for example, to pause the video you would simple do this:
Code:
mciSendString("pause MediaFile", Nothing, 0, 0)
Re: Play Video In a Control
Does anyone know how to play another video after the first one has played? It does seem to do anything if I call the PlayMedia function with a different path.