Link to home
Start Free TrialLog in
Avatar of tigrisek
tigrisek

asked on

how to play wav files

what I need to write wave player program.
I need to open a wave file and play it in my appl.

ASKER CERTIFIED SOLUTION
Avatar of Jase-Coder
Jase-Coder

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jase-Coder
Jase-Coder

in the properties windows for the media control you can set the filename and in your code you can do:

myPlayer.Play();
SOLUTION
Avatar of Jose Parrot
Jose Parrot
Flag of Brazil image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Please, a correction:
    MediaPlayer1->Open();        is mandatory.

    MediaPlayer1->Play();          is optional.

Even Microsoft has Service Packs...

Jose