G Guest Jan 11, 2005 #1 Is there an easy way to play a wav sound on an event - say when the mouse is moved over a control? I'm using Access 2k and Win2000.
Is there an easy way to play a wav sound on an event - say when the mouse is moved over a control? I'm using Access 2k and Win2000.
J Jeff Conrad Jan 11, 2005 #2 Hi, Here is a past post of mine on this subject. Follow this link to Allen Browne's site: http://members.iinet.net.au/~allenbrowne/func-04.html 1. Create a new module and add in the code as instructed 2. Then just add code like this to whatever event you want. Such as GotFocus or something. =PlaySound("C:\StarWarsTheme.WAV") Make sure you include the full path and extension. There is also code here, but I have not used this: http://www.mvps.org/access/api/api0011.htm Hope that helps,
Hi, Here is a past post of mine on this subject. Follow this link to Allen Browne's site: http://members.iinet.net.au/~allenbrowne/func-04.html 1. Create a new module and add in the code as instructed 2. Then just add code like this to whatever event you want. Such as GotFocus or something. =PlaySound("C:\StarWarsTheme.WAV") Make sure you include the full path and extension. There is also code here, but I have not used this: http://www.mvps.org/access/api/api0011.htm Hope that helps,