home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form fmciYieldProc
- Caption = "mciYieldProc"
- ClientHeight = 4020
- ClientLeft = 1605
- ClientTop = 2370
- ClientWidth = 7365
- Height = 4425
- Left = 1545
- LinkTopic = "Form1"
- ScaleHeight = 4020
- ScaleWidth = 7365
- Top = 2025
- Width = 7485
- Begin CBVBX mciYield
- CBType = 12 ' 12 - mciYieldProc
- Left = 0
- Top = 0
- End
- Option Explicit
- Sub Form_Load ()
- Dim success
- Dim devID
- success = mciExecute("close wa")
- success = mciExecute("open waveaudio!f:\reverse\untitled.wav alias wa wait")
- devID = mciGetDeviceID("wa")
- mciYield.YieldDeviceID = devID
- success = mciSetYieldProc(devID, mciYield.CBAdress, ByVal 0&)
- success = mciExecute("play wa")
- success = mciExecute("play wa wait")
- success = mciSetYieldProc(devID, ByVal 0&, ByVal 0&)
- End Sub
- Sub mciYield_mciYieldProc (wDeviceID As Integer, dwData As Long, retval As Integer)
- If MsgBox("Weiter im Programm?", 36) = 6 Then retval = True
- End Sub
-