Playing Video at Target Area

Diablicolic

Well-known member
Joined
Jul 28, 2003
Messages
168
Location
Your Neighbor
This is an example Ive picked up thats about running a video using DirectX on the form that the code is being used on:

[VB]
MyVideo.Owner = Me
[/VB]

But you see I dont want the video to run on the Form, and have the form resized. I want the video to play like at the top center of the form, so that I can do stuff on the bottom :)
 
Dont set the Owner to a form. Assuming that Owner can be any
class that inherits from Control, create a PictureBox in the corner
of your form and set the Owner property to that.
 
Back
Top