How can you play wave or mp3 files ? 
Author Message
 How can you play wave or mp3 files ?

Hello

I forgot to ask something. How can you play wave or mp3 files in a visual
basic program ?

thanks Mike for answering my first question
I have a problem if I want to reply on a message.

best regards



Thu, 08 Sep 2005 19:53:01 GMT  
 How can you play wave or mp3 files ?
Hello

I forgot to ask something. How can you play wave or mp3 files in a visual
basic program ?

thanks Mike for answering my first question
I have a problem if I want to reply on a message.

best regards



Thu, 08 Sep 2005 19:54:28 GMT  
 How can you play wave or mp3 files ?
There are several different methods of playing
wav files in VB.

If you are interested I can forward a zip file
(approx. 350 kb) that has numerous example
projects, complete with source code.

Let me know how to forward that to you if you
are interested and indicate in your response
that you are requesting the sound.zip file.

--
Thanks !

Jim


"If you are living like there is no God ...
  ... you better be right !"



Thu, 08 Sep 2005 22:00:14 GMT  
 How can you play wave or mp3 files ?
Hello

I forgot to ask something. How can you play wave or mp3 files in a visual
basic program ?

thanks Mike for answering my first question
I have a problem if I want to reply on a message.

best regards



Fri, 09 Sep 2005 00:36:07 GMT  
 How can you play wave or mp3 files ?
Like Logit says, lots of ways!  For quick and easy I use the base Windows
Media Player control that's shipped with Windows.  Lately I've been using
the AMP3DJ control by these folks:
http://www.multimediasoft.com/home/index.html .  I've yet to try writing my
own player code.

-Jeff


Quote:
> There are several different methods of playing
> wav files in VB.

> If you are interested I can forward a zip file
> (approx. 350 kb) that has numerous example
> projects, complete with source code.

> Let me know how to forward that to you if you
> are interested and indicate in your response
> that you are requesting the sound.zip file.

> --
> Thanks !

> Jim


> "If you are living like there is no God ...
>   ... you better be right !"



Fri, 09 Sep 2005 01:09:43 GMT  
 How can you play wave or mp3 files ?
How about this one?

Option Explicit
Private Declare Function sndPlaySound Lib "WINMM.DLL" Alias "sndPlaySoundA"
(ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
Dim X As Integer

Private Sub Command1_Click()
'Play Sound Example
X = sndPlaySound("c:\windows\media\CallRing", 3)
End Sub

Private Sub Command2_Click()
'stop Play sound
X = sndPlaySound("", 3)
End Sub

hope it help,
John

Quote:

>Hello

>I forgot to ask something. How can you play wave or mp3 files in a visual
>basic program ?

>thanks Mike for answering my first question
>I have a problem if I want to reply on a message.

>best regards



Fri, 09 Sep 2005 13:09:05 GMT  
 
 [ 6 post ] 

 Relevant Pages 

1. How can you play wave/mp3 files ?

2. playing wave or mp3

3. Play Wave file from Res File

4. Win APIs to play mpg video files, mp3 audio files and audio cds

5. how to encode wave file to MP3 format

6. Help i need an Mp3 control that plays mp3's

7. Playing wave files on events..

8. Playing a wave file

9. Playing Wave Files in QuickBasic

10. How to play wave file by low level?

11. PLAYING WAVE FILES

12. Playing Wave-Files currently opened for writing

 

 
Powered by phpBB® Forum Software