Can you play the tunes normally on the
computer using a separate program? If so why not try using the ShellExecute API
function in vb. If you knew the actual path to the program you could just
use the Shell function but if not then use the former. You would get the
declaration from the API viewer. For example if you wanted to open
Internet Explorer on the machine (if it has IE) you would use something like
this...
Call ShellExecute(Me.Hwnd, "Open", "Iexplorer",
vbNullString, vbNullString, vbNormal)
Hope it helps
Bob
----- Original Message -----
Sent: Tuesday, October 23, 2007 8:17
PM
Subject: [helpwithvb] playing .m4a
files
does anyone know how to play .m4a or .mp4 files (the apple itunes
files)
using vb? i can only play .mp3s.
.