A voir également:
- Comment mettre un son *.wav dans Visual Basic
- Visual basic - Télécharger - Langages
- Visual basic editor - Télécharger - Langages
- Visual petanque - Télécharger - Sport
- Microsoft 365 basic - Accueil - Microsoft Office
- Visual c++ 2019 - Guide
3 réponses
en ayant ajouté le composant "catalist Audio Player Control"
je fais un truc comme ça :
With AudioPlayer1 ' par exemple
.Open SonWav ' fichier wav
.Play
Do
DoEvents
Loop Until .Position = 0 Or .Position >= .Length
.Close
End With
je fais un truc comme ça :
With AudioPlayer1 ' par exemple
.Open SonWav ' fichier wav
.Play
Do
DoEvents
Loop Until .Position = 0 Or .Position >= .Length
.Close
End With