我是delphi的初学者:
playSound('dog.wav',0,snd Async);
请问这段程序是什么意思,怎么在delphi的帮助里找不到,请帮我解释一下是什么意思,我要的是具体的,而不是告诉我这是放dog.wav这个文件的声音就完了,而且告诉我这个函数是不是包含在stdctrls里,在我看到的程序中的uses里有个stdctrls,请问用户定义的是什么意思,是系统中的uses还是别的什么谢谢!

解决方案 »

  1.   

    playSound 是window API 函数,不是DELPHI函数。
    你可以在MSDN上察看它的说明。
    PlaySound
    The PlaySound function plays a sound specified by the given filename, resource, or system event. (A system event may be associated with a sound in the registry or in the WIN.INI file.) BOOL PlaySound(
      LPCSTR pszSound,  
      HMODULE hmod,     
      DWORD fdwSound    
    );
     
    Parameters
    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. 
    Return Values
    Returns TRUE if successful or FALSE otherwise.
      

  2.   

    菜单-help-Windows DSK可以搜索到的
      

  3.   

    哦,找到了,但stdctrls在user里是什么意思呢?是不是象C++里的include <...>一样,那这个stdctrls该在哪里找资料呢?
      

  4.   

    你把你的playSound('dog.wav',0,snd Async);删掉,老老实实的用键盘键入playSound(之后等待一下,直到有提示条出现,再输入参数。初学者,喜欢偷懒,这样就没有问题了,为什么,自己多想想。
      

  5.   

    你这种方法我知道,现在playsound的问题解决了,我看了你告诉我的方法在sdk里都看懂了,但现在是那个uses里的stdcrtls这段的意思不是很明白,请帮我解释一下好吗?