|
-
Nov 29th, 1999, 01:44 AM
#5
Thread Starter
Member
Another way to do this is to include the Multimedia (MCI) control in your VB project. You can then place an MCI control on a form and use the following code in the forms load event.
Private Sub Form_Load()
MMControl1.Wait = True
MMControl1.FileName = "C:\your.mp3"
MMControl1.Command = "Open"
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|