VB Excel son sur demande
Résolu/Fermé
ACTS
Messages postés
6
Date d'inscription
mardi 4 mars 2008
Statut
Membre
Dernière intervention
12 mars 2008
-
4 mars 2008 à 20:23
gbinforme Messages postés 14946 Date d'inscription lundi 18 octobre 2004 Statut Contributeur Dernière intervention 24 juin 2020 - 12 mars 2008 à 17:27
gbinforme Messages postés 14946 Date d'inscription lundi 18 octobre 2004 Statut Contributeur Dernière intervention 24 juin 2020 - 12 mars 2008 à 17:27
A voir également:
- VB Excel son sur demande
- Liste déroulante excel - Guide
- Calculer une moyenne sur excel - Guide
- Si et excel - Guide
- Comment aller à la ligne sur excel - Guide
- Word et excel gratuit - Guide
2 réponses
ACTS
Messages postés
6
Date d'inscription
mardi 4 mars 2008
Statut
Membre
Dernière intervention
12 mars 2008
1
6 mars 2008 à 21:18
6 mars 2008 à 21:18
J'ai trouve, c'est bon...
gbinforme
Messages postés
14946
Date d'inscription
lundi 18 octobre 2004
Statut
Contributeur
Dernière intervention
24 juin 2020
4 709
6 mars 2008 à 22:02
6 mars 2008 à 22:02
bonjour
Comme il est indiqué lorsque tu mets ton sujet en résolu, il serait bon que :
Problème résolu (veuillez récapituler la solution)
afin que ceux qui vont tomber sur ta question résolue aient une réponse : merci d'avance !
Comme il est indiqué lorsque tu mets ton sujet en résolu, il serait bon que :
Problème résolu (veuillez récapituler la solution)
afin que ceux qui vont tomber sur ta question résolue aient une réponse : merci d'avance !
12 mars 2008 à 13:38
Mais je l'ai modifié un peu...
' --------------------------------------------------------------------------------
' Copyright ©1999-2007, Shyam Pillai, All Rights Reserved.
' --------------------------------------------------------------------------------
' You are free to use this code within your own applications, add-ins,
' documents etc but you are expressly forbidden from selling or
' otherwise distributing this source code without prior consent.
' This includes both posting free demo projects made from this
' code as well as reproducing the code in text or html format.
' --------------------------------------------------------------------------------
Modified by ACTS
Option Explicit
' ===== API declarations =====
Private Declare Function sndPlaySound Lib "winmm.dll" _
Alias "sndPlaySoundA" _
(ByVal lpszSoundName As String, _
ByVal uFlags As Long) As Long
Private Declare Function PlaySound Lib "winmm.dll" _
Alias "PlaySoundA" _
(ByVal lpszName As String, _
ByVal hModule As Long, _
ByVal dwFlags As Long) As Long
' Sound Flag
Private Const SOUND_FILENAME = &H20000
'===== Test the functions ======
Sub Sounds()
If Range("B1") = 2 Then
Debug.Print PlaySoundFileA("C:\Documents and Settings\Desktop\sounds test\bomb.wav")
ElseIf Range("B1") = 3 Then
Debug.Print PlaySoundFileA("C:\Documents and Settings\Desktop\sounds test\child.wav")
ElseIf Range("B2") = 3 Then
Debug.Print PlaySoundFileA("C:\Documents and Settings\Desktop\sounds test\chainsaw.wav")
End If
End Sub
' ===== Method 1 =====
Public Function PlaySoundFileA(sndFileName As String) As Boolean
Dim iSuccess As Integer
iSuccess = sndPlaySound(sndFileName, SOUND_FILENAME)
If iSuccess = 0 Then
PlaySoundFileA = False
Else
PlaySoundFileA = True
End If
End Function
12 mars 2008 à 17:27
C'est très sympa, ceux qui cherchent cela apprécieront sûrement ta découverte : Merci beaucoup !