I'm at a total loss of what to do. I am using an AxWindowsMediaPlayer object that is created programatically and added to the form's controls:
Private Sub PlayNext(ByVal path As String)
Dim wA As Rectangle = Screen.PrimaryScreen.Bounds
Dim vidPlayer As New AxWMPLib.AxWindowsMediaPlayer
Controls.Add(vidPlayer)
With vidPl...
Is it possible to set video brightness/contrast/etc. settings to AxWindowsMediaPlayer control programmatically? Is there any other way to set those settings to video output, maybe through windows API?
...
Hello!
I have written a video player app that uses the WindowsMediaPlayer control. I have since started to use photoshop a bit and so decided to create my own buttons and controls for it so I could make it respond in exactly the way I want it to. I created a new user control which has a panel with the new buttons docked to the bottom of...