media player control, 2nd try

  • Thread starter Thread starter Stuart McGraw
  • Start date Start date
S

Stuart McGraw

Hmm, no replies.... does no one use the widows media player
control on access forms for playing mp3 files? even a "yes it
works" answer would help me.
 
I guess no one here uses media player on their forms. I've added
microsoft.public.access.activexcontrol so that someone there might jump in.

FWIW, RTF gets a few frowns.

HTH
 
I would actually just place a button on the form, and launch the .mp3 file.

Trying to make the player run "inside" the form is not very workable.

So, to launch the mp3 file, you can use:


Application.FollowHyperLink "c:\my music\abc.mp3"

Or, if you have a field on the form with the path name, you go:

Application.FollowHyperLink me!SongName

The above will work, and even work for different versions of mp3 players,
even if you do not use the media player...
 
Thank you all, for the info.
Reason I don't just launch an app to play an mp3 is that
I actually want to play only a part of a file (e.g play 8.5
seconds starting at 80 seconds into the file). I thought
the media player control had a property that would allow
this but I guess it's moot, since no one has said that they
ever got it to play mp3 files. I guess I will try to figure
out how to use MCI.
 
Back
Top