VS 2008 - Axwindowsmediaplayer Repeat Or Play?
Dec 2, 2009
I am using Windows Media Player component in vb2008 and I was wondering if there is a way to make it repeat? or if I can just make it play every 51 seconds (which is how long the song is) I tried Axwindowsmediaplayer1.play and .repeat, But neither of those are functions, So I'm not sure what I would have to use.
View 2 Replies
ADVERTISEMENT
Mar 22, 2012
I am making a media player and I have a button where I want the text to change depending whether the media player is playing or paused. So far I have this:
If (AxWindowsMediaPlayer1.playState = WMPLib.WMPPlayState.wmppsPlaying) Then Then
Button3.Text = "Pause"
ElseIf (AxWindowsMediaPlayer1.playState = WMPLib.WMPPlayState.wmppsPaused) Then
Button3.Text = "Play"
End If
The problem is, is that i get an error under WMPLib.WMPPlayState on both lines. The error says 'WMPPlayState' is ambiguous in the namespace 'WMPLib'..
View 2 Replies
Sep 1, 2011
I have a form using AxWindowsMediaPlayer to play a short video. How can I load another form and close this form when the video is finished?
View 6 Replies
Feb 27, 2011
AxWindowsMediaPlayer auto play next song from playlist
View 1 Replies
Feb 27, 2010
I'm using AxWMPLib.AxWindowsMediaPlayer to play wmv files within my application. I provide an encrypted wmv file, which will not play on windows media player and within my application load it into an array, decrypt it and save it as a normal wmv file, which can then be played in the normal way by windows media player.However, I want to avoid saving the decrypted file to disk as this could then be copied by the user. Is there a way to play the media from within my application without first saving the file to disk? IE directly from the byte array?
View 1 Replies
Jan 10, 2012
I'm using VB 2010 Express with two instance of AxWindowsMediaPlayer in order to sync two videos (the videos are of the same thing but from two camera angles). Because the videos were started at slightly different times I've manually set the start time of each one using the following
AxWindowsMediaPlayer1.Ctlcontrols.currentPosition = 314.5093196
AxWindowsMediaPlayer2.Ctlcontrols.currentPosition = 237.1639908
The problem I'm having is that whilst the WMP clock initially displays the above times in each AxWindowsMediaPlayer, when I play the videos each starts a few seconds out from the stated currentPositions.
The video files are around 300MB each and when testing with smaller video files the problem does not seem to happen. I'm guessing the large file size is causing some delay and hence causing the problem.
View 1 Replies
Dec 2, 2009
this is my first post, and i thought the best people to help me out are you MSDN forum users.
View 2 Replies
Feb 17, 2011
I'm trying to make a mastermind game program with visual basic. I started of creating the combination maker for the start of the game. Hoever, in my version i don't want any colors to repeat. I used the random function independently to get numbers from 1 to 6. Each number has a corresponding color. The problem, the values still repeat sometimes.
Here's my code for that part:
Randomize
a = Fix(Rnd * 6) + 1
txtA = a
If a = 1 Then
[CODE]...
View 2 Replies
Jan 5, 2010
How do I (programmatically) find out the key repeat delay and key repeat rate for a system?
A solution that works on any/all .Net capable platforms would be ideal, but the key target OSes would be XP, Vista, and 7.
View 1 Replies
Mar 31, 2011
I have a axwindowsmediaplayer object in my form which plays a video on load, but unfortunately the video seems too small and there is a massive black border around the video, is there anyway I can stretch the video to fill the whole player window?
View 1 Replies
Feb 15, 2010
I have a solution where I wanted to create a custom AxWindowsMediaplayer control. So I added a usercontrol. I added an axwindowsmediaplayer and then I added the control to my Form1. No problem so far. I use a Timer in the Usercontrol to make some sort of Fader. No problems there either. BUT I also added a few labels. In the Timer Tick I type the following lines:
[Code]....
View 9 Replies
May 31, 2009
I'm making an mp3 player and I've searched around the forum for a good example on how to repeat the current playlist but I was unable to find one.
View 1 Replies
Oct 14, 2009
I have done this code but what is a smart way to get rid of repeats?
card1 = random.Next(0, 52)
card2 = random.Next(0, 52)
card3 = random.Next(0, 52)
[Code].....
View 4 Replies
Feb 13, 2009
I need to take the image and clip a sliver in the middle and repeat it to make it like the second attachment. (so its 320px wide)i dont need to save the result... I need to cut it in half... then use drawimg to draw the left half, then the center "slice" then the left half.
View 4 Replies
Aug 26, 2011
I need a textbox where you can add a number and if you press a button that it will repeat the function of the button the number of times as in the textbox.
View 9 Replies
May 8, 2010
I want to the song can auto start one by one when import the song to list box. But it doesn't work that I need to select one by one. Besides, the program can repeat all the song or individual song when checkbox enable.
If AxWindowsMediaPlayer1.playState = WMPLib.WMPPlayState.wmppsMediaEnded Then
If playlistbox.SelectedIndex < playlistbox.Items.Count - 1 Then
[code].....
View 4 Replies
Sep 16, 2010
Im trying to open media player (full screen) and play a movie. When i create the file path like so: Dim MoviePathVTS As String = String.Concat("""" + tempMoviePath, " \VIDEO_TS\VTS_01_1.VOB" + """")
It wont play the file but if i do it like this: Dim video1 = """F:\Movies\DvD\Angels and Deamons\VIDEO_TS\VTS_01_1.VOB"""
It plays fine? the file paths are the same including the extra "" but it just refuses to play. I need the top one because i have many movies in a treeview.
Heres my code
Private Sub watchNow_Click(ByVal sender As Object, ByVal e As EventArgs)
'get the position of the selected node
Dim i = movieTreeView.SelectedNode.Index
[CODE]...
View 2 Replies
Feb 9, 2010
How can you make a play button play/stop toggle? Currently my button plays a file in WMP but when I click it again, it just restarts the file. I would like it to toggle on and off, play and stop, not play and pause.
View 8 Replies
Aug 29, 2009
On the subject of the AxWindowsMediaPlayer.URL property, MSDN warns:Quote:Originally Posted by MSDN
View 3 Replies
May 2, 2012
I am using AxWindowsMediaPlayer on VB.NET to preview MP3 files from the web so that the user can choose to download it if he likes it. It works. I just put a link in the URL property and after a while it begins playing. ... after a while, of course. Because it has to download the file first. Perhaps I realized that because of my slow connection XD. But that made me think: how can I tell if the player is currently downloading a file? So that I can put a label saying "Please wait, preparing file..." or something.
View 1 Replies
Aug 7, 2011
Is there any way to disable the keyboard shortcuts of AxWindowsMediaPlayer or even handle the KeyDownEvent of that control ?
View 1 Replies
Mar 12, 2011
How do I use Wait to complete on AxWindowsMediaPlayer. I wish the video to play first before loading another form.
View 5 Replies
Apr 2, 2009
ive just started to play with WMI for the first time and im having some real troubles.... i got a WMI Code Creator from Microsoft web site and it creates code for me, and i can run it from that ap and the code works, but when i copy it to my project in VS2008 i get 3 not defined errors. unfortunatly i cant figure it out, im sure its pretty simple.
[Code]...
View 2 Replies
Jul 31, 2010
i make a simple winform application with AxWindowsMediaPlayer and timer.
My objective is about to make the application play the clip with interval (that's why i use timer)
When AxWindowsMediaPlayer finish playing the first clip, everything's okay. But when it begin playing the next clip. It CAN'T HAVE FULLSCREEN MODE. I have to double click the control manually to have it fullscreen. I use vb 2005 in 7 ultimate.
Here is my code
Private Sub AxWindowsMediaPlayer_PlayStateChange(ByVal sender As Object, ByVal e As AxWMPLib._WMPOCXEvents_PlayStateChangeEvent) Handles AxWindowsMediaPlayer.PlayStateChange
[Code]......
View 6 Replies
Aug 11, 2010
I have the windows media player embedded in a windows form, I have tried to set the uiMode to 'None' but it will not work, I have tried doing it using the properties window in the development screen which accepts 'None' but when the program is run it shows the controls on the player.I have also tried placing the action into code: AxWindowsMediaPlayer1.uiMode = none This generates an error stating the 'None' is not declared.
View 6 Replies
Aug 20, 2010
this is my Dim files() As IO.FileInfo = New IO.DirectoryInfo(My.Application.Info.DirectoryPath & "downloaded songs").GetFiles("*.wmv") Listbox1.Items.AddRange(files) but when i load - nothing happens
View 6 Replies
Mar 11, 2011
How do I get the video to finish playing in AxWindowsMediaPlayer before it loads another form? It keeps showing the next form briefly before the video starts.
View 2 Replies
Nov 26, 2009
I'm making a MediaPlayer program , and I'm using AxWindowsMediaPlayer control
so , I need to know how to preview subtitles or seek bar over
AxWindowsMediaPlayer control - especially on FullScreen mode
View 3 Replies
Aug 28, 2009
I want to play an MP3 File that I saved as a resource. How would I do that?
View 4 Replies
Dec 11, 2009
How do i play 2 sounds at once? i have a sound effect on a button, and when i press it, it does the sound effect of the button and stops the music sound
View 3 Replies