--
Thanks,
Arvind
--
"eRiva Systems" - Where Technology Meets Life, Every Minute.
You can use SoundPlayer from OpenNETCF.
protected OpenNETCF.Windows.Forms.SoundPlayer soundPlayer = new
OpenNETCF.Windows.Forms.SoundPlayer();
.....
string sSoundLocation = @"\Windows\type.wav";
System.IO.FileInfo fi = new System.IO.FileInfo(sSoundLocation);
if(fi.Exists)
{
soundPlayer.SoundLocation = sSoundLocation;
soundPlayer.PlaySync();
}
......
Anders
"Arvind" <arv...@erivasystems.com> skrev i meddelandet
news:OGWpaLmj...@TK2MSFTNGP12.phx.gbl...
BTW:
is there any method where i can give the user interface to the user in which
he/she can adjust the tempo of the music played as background?
like 50 BPS,60,100,etc(beats per second)
is it possible?
--
Thanks,
Arvind
--
"eRiva Systems" - Where Technology Meets Life, Every Minute.
"Anders Johansson" <and...@nospam.se> wrote in message
news:uJVZexmj...@TK2MSFTNGP10.phx.gbl...
Peter
--
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org
Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups
"Arvind" <arv...@erivasystems.com> wrote in message
news:O9TkMjn...@TK2MSFTNGP09.phx.gbl...
***********what is the problem here?and what should i do to rectify this ?
#when i was embedding the WMP in eVC++ applcation and open the WMP it plays
both the files..i mean the 2 WMP's (in applicaiton and expernal)
what i want to achieve is..
1.i want the background music to play always and user should also be able to
open video files in a seperate process..
2.is there any way to play WMA file as background..??????
--
Thanks,
Arvind
--
"eRiva Systems" - Where Technology Meets Life, Every Minute.
"Peter Foot [MVP]" <feed...@nospam-inthehand.com> wrote in message
news:uOSXwOpj...@TK2MSFTNGP12.phx.gbl...