Help with the Multimedia MCI control 
Author Message
 Help with the Multimedia MCI control

I am creating an application that will give me the track information
from an audio cd.  I am trying to step thru the tracks to retrieve the
track length.  I am using the "Next" command to move to the next
track, but it doesn't always work.  Any suggestions?  Here is my code:

Dim i As Integer

MCICtl.DeviceType = "CDAudio"
MCICtl.Wait = True
MCICtl.Shareable = False
MCICtl.Enabled = True
MCICtl.Command = "Open

For i = 1 To MCICtl.tracks
  MsgBox "Track - " & MCICtl.Track & ", Length - " & _
         Format((MCICtl.TrackLength And 255), "00") & ":" & _
         Format((MCICtl.TrackLength / 256) And 255, "00")
  MCICtl.Command = "Next"
  DoEvents
Next i



Wed, 14 Sep 2005 07:10:55 GMT  
 
 [ 1 post ] 

 Relevant Pages 

1. Help needed with Multimedia MCI Control Or Playing a WAV file !

2. Please help me with MCI Multimedia Control Error #322

3. Help: MCI Multimedia control

4. HELP!!!! Multimedia MCI Control

5. MCI Multimedia Control help

6. Multimedia control question (MCI Control)

7. Multimedia MCI Control

8. VB6,Multimedia MCI control ,and voice

9. MCI Multimedia Control

10. Trouble saving a wav file using MCI Multimedia Control

11. Saving a file with the MCI Multimedia Control

12. MCI Multimedia Control

 

 
Powered by phpBB® Forum Software