vote up 0 vote down star

How can i play windows media audio/video file(wmv) in windows media control in vb6? I tried playing it through this code but it didn't work

wmp.URL = App.Path & "filename"
wmp.Controls.play
flag

0% accept rate

2 Answers

vote up 0 vote down

The statement you show is correct. Are you sure of the file path, file type, and that the file is okay? The URL is specified without double quotes even if it has spaces in the path. Can you play the file in Windows Media Player if you just open it? If none of these help, can you post the actual code and the actual url you are setting?

link|flag
vote up 1 vote down

You forgot the backslash between App.Path and "filename".

wmp.URL = App.Path & "\" & "filename"
wmp.Controls.play
link|flag
For me the Play command was unnecessary as assigning the file to the URL property caused the control to immediately begin playing. – Beaner Nov 5 at 22:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.