Question : VBA - Playing Movies using VLC or GOM Player

Hi Folks,

I have a Excel sheet with many files path, this paths refers to Movie files.

I have to create a VBA procedure that when a press a Button appears an inputbox asking the line number of the file (inputbox ("Type the right number",),1) that I want to Play. I have to Use VLC as a player or GOM Player

Can someone help me?

Best Regards

Answer : VBA - Playing Movies using VLC or GOM Player

in VLC change to
vlc --fullscreen
Shell "C:\Program Files\vlc folderr\vlc.exe --fullscreen """ & Cells(i, 1).Value &""
refer to http://www.videolan.org/doc/play-howto/en/ch04.html

in Media player change to
/fullscreen
Shell "C:\Program Files\Windows Media Player\wmplayer.exe /fullscreen """ & Cells(i, 1).Value &""
refer to here http://support.microsoft.com/kb/241422
Random Solutions  
 
programming4us programming4us