Ragazzi volevo sapere come fare a riprodurre un suono quando viene attivato un form
grazie!!
Ragazzi volevo sapere come fare a riprodurre un suono quando viene attivato un form
grazie!!
Agos
cmq se fai una ricerca sul forum trovi altro.Per riprodurre un file audio dichiaro la relativa funzione
code:
Declare Auto Function PlaySound Lib "winmm.dll" (ByVal name _
As String, ByVal hmod As Integer, ByVal flags As Integer) As Integer
E la richiamo così ogni volta che mi serve
code:
PlaySound("file_audio.wav", Nothing, SND_FILENAME Or SND_ASYNC)