473,387 Members | 1,641 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

api for having a warning sound?

Hi All,

I have a database with the timer function set to warn the user that
arecord is due to expire. Is there a Win API that I can use so a loud
warning will go off. Not this simpel beep in access but a really,
like Virus Alert kind of warning?

Regards

Marco
Nov 13 '05 #1
1 3151
Option Compare Database
Option Explicit

Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" _
(ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As
Long

'· pszSound
'A string that specifies the sound to play.
'If this parameter is NULL, any currently playing waveform sound is stopped.
'To stop a non-waveform sound, specify SND_PURGE in the fdwSound parameter.
'Three flags in fdwSound (SND_ALIAS, SND_FILENAME, and SND_RESOURCE)
determine whether the name is interpreted
'as an alias for a system event, a filename, or a resource identifier.
'If none of these flags are specified, PlaySound searches the registry or
the WIN.INI file
'for an association with the specified sound name. If an association is
found, the sound event is played.
'If no association is found in the registry, the name is interpreted as a
filename.

'· hmod
'Handle of the executable file that contains the resource to be loaded.
'This parameter must be NULL unless SND_RESOURCE is specified in fdwSound.

'· fdwSound
'Flags for playing the sound. The following values are defined:
'SND_APPLICATION
'The sound is played using an application-specific association.
'SND_ALIAS
'The pszSound parameter is a system-event alias in the registry or the
WIN.INI file.
'Do not use with either SND_FILENAME or SND_RESOURCE.
'SND_ALIAS_ID
'The pszSound parameter is a predefined sound identifier.
'SND_ASYNC
'The sound is played asynchronously and PlaySound returns immediately after
beginning the sound.
'To terminate an asynchronously played waveform sound, call PlaySound with
pszSound set to NULL.
'SND_FILENAME
'The pszSound parameter is a filename.
'SND_LOOP
'The sound plays repeatedly until PlaySound is called again with the
pszSound parameter set to NULL.
'You must also specify the SND_ASYNC flag to indicate an asynchronous sound
event.
'SND_MEMORY
'A sound event's file is loaded in RAM.
'The parameter specified by pszSound must point to an image of a sound in
memory.
'SND_NODEFAULT
'No default sound event is used. If the sound cannot be found,
'PlaySound returns silently without playing the default sound.
'SND_NOSTOP
'The specified sound event will yield to another sound event that is already
playing.
'If a sound cannot be played because the resource needed to generate that
sound is busy playing another sound,
'the function immediately returns FALSE without playing the requested sound.
'If this flag is not specified, PlaySound attempts to stop the currently
playing sound
'so that the device can be used to play the new sound.
'SND_NOWAIT
'If the driver is busy, return immediately without playing the sound.
'SND_PURGE
'Sounds are to be stopped for the calling task.
'If pszSound is not NULL, all instances of the specified sound are stopped.
'If pszSound is NULL, all sounds that are playing on behalf of the calling
task are stopped.
'You must also specify the instance handle to stop SND_RESOURCE events.
'SND_RESOURCE
'The pszSound parameter is a resource identifier; hmod must identify the
instance that contains the resource.
'SND_SYNC
'Synchronous playback of a sound event. PlaySound returns after the sound
event completes."

Private Const SND_APPLICATION = &H80 ' look for application specific
association

Private Const SND_ALIAS = &H10000 ' name is a WIN.INI [sounds] entry

Private Const SND_ALIAS_ID = &H110000 ' name is a WIN.INI [sounds] entry
identifier

Private Const SND_ASYNC = &H1 ' play asynchronously

Private Const SND_FILENAME = &H20000 ' name is a file name

Private Const SND_LOOP = &H8 ' loop the sound until next sndPlaySound

Private Const SND_MEMORY = &H4 ' lpszSoundName points to a memory file

Private Const SND_NODEFAULT = &H2 ' silence not default, if sound not found

Private Const SND_NOSTOP = &H10 ' don't stop any currently playing sound

Private Const SND_NOWAIT = &H2000 ' don't wait if the driver is busy

Private Const SND_PURGE = &H40 ' purge non-static events for task

Private Const SND_RESOURCE = &H40004 ' name is a resource name or atom

Private Const SND_SYNC = &H0 ' play synchronously (default)

Function PlayIt()

PlaySound "C:\\WINDOWS\\MEDIA\\TADA.WAV", ByVal 0&, SND_FILENAME Or
SND_ASYNC

End Function

Appears to work, but don't ask any questions. Found it somewhere

HTH

Phil

"Marco Krechting" <ma************@zonnet.nl> wrote in message
news:52*************************@posting.google.co m...
Hi All,

I have a database with the timer function set to warn the user that
arecord is due to expire. Is there a Win API that I can use so a loud
warning will go off. Not this simpel beep in access but a really,
like Virus Alert kind of warning?

Regards

Marco

Nov 13 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: SB | last post by:
Ok, very simple problem. I'm trying to update a value by calling a function using pass by reference, but it does not update the value. In short, the value I'm trying to update is balance, which is...
6
by: Jamal | last post by:
I am working on binary files of struct ACTIONS I have a recursive qsort/mergesort hybrid that 1) i'm not a 100% sure works correctly 2) would like to convert to iteration Any comments or...
0
by: (Pete Cresswell) | last post by:
I'm writing a loop that Dir$'s through about a hundred MS Excel spreadsheets and extracts info from maybe 5-20 workbooks within each into a staging table. Problem is that I don't think I have any...
12
by: Winbatch | last post by:
Hi, I'm trying to learn multithreading and it doesn't seem to be working for me. I have a feeling it has to do with the fact that I'm writing to files rather than to printf, but maybe not. ...
29
by: junky_fellow | last post by:
Consider the following piece of code: struct junk { int i_val; int i_val1; char c_val; }; int main(void) {
302
by: Lee | last post by:
Hi Whenever I use the gets() function, the gnu c compiler gives a warning that it is dangerous to use gets(). Is this due to the possibility of array overflow? Is it correct that the program...
1
by: pbali | last post by:
Hi, I have a PHP5 script that creates an XML file and sends the file via FTP. The script runs from the browser smoothly. No problem. I am trying the use the same script from the windows xp...
17
by: Chad | last post by:
I'm want static char *output; to hold the modified string "tel chad" However, when I debug it, static char *output holds the ascii value of the strng, and not the string itself. Here is...
1
by: AlwaysLost | last post by:
Error on the Home Page Above The Header: Here is the error before the footer: Here is the code they refer to, it seems to be the same call or function for each error: This is lines 38...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.