I am using the MMControl to play a simple AVI file. I was wondering if there was a way to embed it to the form rather that having it open in a seperate window each time. Any help is appreciated. Thanks
Printable View
I am using the MMControl to play a simple AVI file. I was wondering if there was a way to embed it to the form rather that having it open in a seperate window each time. Any help is appreciated. Thanks
You can redirect the AVI file from the multimedia control to a picture box control like this:
MMControl.hWndDisplay = Picture1.hWnd
Just found this in a book, I'm going to try it out and post again later (unless this is enough for you to go on).
That worked perfect, I was pretty sure you could do it with Hwnd, but I was not sure how. THanks a lot.