如 何 用 API 播 放 CD

王朝vb·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

'Author: Gordon F. MacLeod

' How to play a CD Audio disc via API

' Declare the following API

Declare Function mciSendString& Lib "MMSYSTEM" (ByVal lpstrCommand$,ByVal lpstrReturnStr As Any, ByVal wReturnLen%, ByVal hCallBack%)

'Add the code below to appropriate routines

Sub cmdPlay_Click ()

Dim lRet As Long

Dim nCurrentTrack As Integer

'Open the device

lRet = mciSendString("open cdaudio alias cd wait", 0&, 0, 0)

'Set the time format to Tracks (default is milliseconds)

lRet = mciSendString("set cd time format tmsf", 0&, 0, 0)

'Then to play from the beginning

lRet = mciSendString("play cd", 0&, 0, 0)

'Or to play from a specific track, say track 4

nCurrentTrack = 4

lRet = mciSendString("play cd from" & Str(nCurrentTrack), 0&, 0, 0)

End Sub

' Remember to Close the device when ending playback

Sub cmdStop_Click ()

Dim lRet As Long

'Stop the playback

lRet = mciSendString("stop cd wait", 0&, 0, 0)

DoEvents 'Let Windows process the event

'Close the device

lRet = mciSendString("close cd", 0&, 0, 0)

End Sub

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航