when i am working with AxRealAudioObjects.AxRealAudio i have ( System.Windows.Forms.Panel) i want to display the vedio inside it
it is easy when you are working with vedio from the class(Microsoft.DirectX.AudioVideoPlayback.Video)
becuase it has this property (Owner) but there is no property like this when you are working with AxRealAudioObjects.AxRealAudio
Bechir BejaouiPosted Dec 29, 2008, 5:34 PM
moh turPosted Dec 29, 2008, 8:49 AM
first of all Thanks for your answer , i tried to do that ,
i have realPlayer object
AxRealAudioObjects.AxRealAudio MyReal_Player = new AxRealAudioObjects.AxRealAudio();
and i have the control (Panel) From Class
System.Windows.Forms.
Panel MyPanelMyPanel.Controls.Add(MyReal_Player )
and i run the Application and success and no Error just when i play the Vedio give me an Error . but i solve it in another way like this
MyReal_Player.Parent.Controls.Add(MyPanel);
Bechir BejaouiPosted Dec 28, 2008, 3:23 PM