Hi there.
I'm making a program and i'm coming along great accept,
i want a wav file to play like an event beep
so when i connect, it makes just a sound like aaa.wav
so i don't want to know how to make and wav player or how to pause it, i just want to know how to play an wav file, no extra's
:D
i hope someone can help me
I'm making a program and i'm coming along great accept,
i want a wav file to play like an event beep
so when i connect, it makes just a sound like aaa.wav
so i don't want to know how to make and wav player or how to pause it, i just want to know how to play an wav file, no extra's
:D
i hope someone can help me
Click on the MSDN link in my signature and enter "PlaySound" in the search field.
if you look at MS, you will read this :) (translated to asm):
.data
szFile: db "aaa.wav", 0
.code
push SND_FILENAME
push NULL
push offset szFile
call PlaySound
Tnx you very much