Is there a way to embed an .avi file and use media player to play

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to embed an .avi file in an Access database and use media
player to play it on a form?
 
Hi,
it is not advised to embed files within access. It can cause bloat and
problems with the 2GB file size limit.
Instead either hardcode or store the full path to the external file as a
string value. Access includes a windows media player active x control which
you can use to play the file...at runtime you could assign its url e.g.:

Me.YourPlayerControlName.Url = "c:\path to your file\yourfile.wmv"

HTH
Good luck
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top