954,551 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

MP3 Alarm Clock on Timer?

I am new to VB coding so I'm trying some easy projects.

I figured an alarm clock would be a good place to start. But I'm Having a hard time with the MP3 Part of it all.

I want a pre-selected MP3 to start, when my timer2 is = to the time of day.

But i Have never really used MP3's in any project. So dose anyone know how i would go about.

A. Adding a MP3 to the coding in the background and then.
B. Calling on it when the alarm goes off.

fable1380
Newbie Poster
1 post since Feb 2010
Reputation Points: 10
Solved Threads: 0
 

A. use Microsoft Multimedia Control. find this control on component.
add this code to play mp3 file :

Private Sub PlaySound()
      On Error GoTo ErrMsg
         AxMMControl1.Wait = True
         AxMMControl1.FileName = "D:\test.mp3"
         AxMMControl1.Command = "Open"
         AxMMControl1.Command = "Play"
         Exit Sub
         ErrMsg:
         MsgBox(Err.Description)
   End Sub


B. just call procedure name

Jx_Man
Nearly a Senior Poster
3,329 posts since Nov 2007
Reputation Points: 1,372
Solved Threads: 444
 

Hello,
I can't find the multimedia control on VS 2008 Pro !!

are you sure it's there?

Thanks

huslayer
Newbie Poster
2 posts since May 2010
Reputation Points: 10
Solved Threads: 0
 

Hi,

Looks like the .Net MultiMediaControl isn't for free, look here.

What you can do is add the Windows mediaplayer control.

Luc001
Posting Whiz
376 posts since Mar 2010
Reputation Points: 85
Solved Threads: 98
 

put this in the function:

AxWindowsMediaPlayer1.URL = "e:\music\Wanksta.mp3"
AxWindowsMediaPlayer1.Visible = False

and if you want to stop:

AxWindowsMediaPlayer1.close()

AxWindowsMediaPlayer1 is a COM component. this component you can add in the ToolBox whit right click and choose component.

I hope this helps

dlplenin
Newbie Poster
10 posts since Mar 2009
Reputation Points: 10
Solved Threads: 0
 

Yep, thanks so much :)
the Windows mediaplayer control is great...

huslayer
Newbie Poster
2 posts since May 2010
Reputation Points: 10
Solved Threads: 0
 

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: