Hi All!
I want to know What is third party component. How I can use of any third party component. For example I want to use third party component of axmedia player. Please help me.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Posted May 20, 2011, 5:27 AM
Santosh KumarPosted May 20, 2011, 3:39 AM
Posted May 20, 2011, 2:31 AM
Santosh KumarPosted May 20, 2011, 2:22 AM
I want to use NCTAudioFile.dll as a third party component. I have add its refrence. I am using it in axmedia player. I want to play all small files into a temporary runtime generated long file. How I can make it's function. Please assist if possible.
Posted May 20, 2011, 1:57 AM
A third-party software component is a reusable software component developed to be either freely distributed or sold by an entity other than the original vendor of the development platform.
First you need to get the dll for AXMedia player. Add the dll into project reference. After that import the namespace into your project.
The below is sample code for AXMediaplay control to play a movie file.
AxMediaPlayer1.FileName = "C:\movie.wmv"
AxMediaPlayer1.Play()
AxMediaPlayer1.ShowControls = False
AxMediaPlayer1.AllowChangeDisplaySize = False
AxMediaPlayer1.EnableContextMenu = False
AxMediaPlayer1.ClickToPlay = False
Hope this helps you.