SQL Object
 
Syntax
 
SQL.StartPlayBack(WaveFile)
 
Description
Activates a playback channel on the sound card and plays the sound in the background. If the wave file is successfully included in the playlist, the function returns TRUE, or FALSE otherwise.
 
When this function is executed in short succession, the function will return FALSE when a sound has not yet been played completely.
 
Parameter
Description
WaveFile
A path and file reference to a valid wave file (.wav).
See Also
 
Example
 
Sub Main
 
   Dim sFile As String
 
   sFile = GetFilePath("*.wav")
 
  SQL.StartPlayback sFile
 
End Sub