Click here to Skip to main content
15,905,148 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi How to play Mp3 file in vb 2005, my list of mp3 files in vb.net is in file listbox.. help me with the codes thanks!
Posted
Comments
[no name] 25-Jul-11 10:41am    
I have already answered your question, did you try something?
thenorms12 25-Jul-11 10:49am    
sorry but i need a simple code.. :(

You were already told how to do it. System.Diagnostics.Process.Start("filepath").

The filepath you give the Start method should be a fully qualified path, either drive-letter based, URL, or UNC path.
 
Share this answer
 
Comments
thenorms12 25-Jul-11 10:49am    
it has error, where wud i put it? in module or top of the form?
thenorms12 25-Jul-11 10:54am    
I get it, but my professor said that when i finished downloading it, it will go to filelistbox and when i double click it, it will play
Dave Kreskowiak 25-Jul-11 11:05am    
Probably in the DoubleClient event handler of your ListBox, or whatever control you're using to list the files.
thenorms12 25-Jul-11 11:09am    
Private Sub FileListBox1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles FileListBox1.DoubleClick

AxWindowsMediaPlayer1.URL = FileListBox1.Path
End Sub
Dave Kreskowiak 25-Jul-11 11:19am    
I also said you had to give it the FULLY QUALIFIED path to the file. Since I have no idea where your "browser" put these files, or where you have these files stored, it's pretty much impossible to be more specific.
Hi,

On the page where you asked this question it says, in the guidelines:

2. Be specific! Don't ask "I need to write a booking application". Specify exactly what it is you need help with.

I think you need to have a go at your project and come back when you get stuck.

Best of Luck :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900