I am calling realplayer from within my app using shell. If I just call the player it works OK, realplayer opens.
If I tack on the file name I want to open realplayer opens but I then get a general error from it saying this: http://100_0942.MOV
I have the path to realplayer as:
I then add this when the user selects the movie file of choice:
I then pass strPlayerAndFilePath to shell.
With or without quotes I get the error?
If I run realplayer manually and open the mov file it works?
If I modify the shortcut to include the mov file name it works?
Have I missed something?
Thanks
If I tack on the file name I want to open realplayer opens but I then get a general error from it saying this: http://100_0942.MOV
I have the path to realplayer as:
Code:
Public gstrRealPlayerPath As String = """C:\Program Files\Real\RealPlayer\realplay.exe"""
I then add this when the user selects the movie file of choice:
Code:
Dim strPlayerAndFilePath As String = gstrRealPlayerPath & " """ & Me.cboMovies.SelectedItem & """"
I then pass strPlayerAndFilePath to shell.
With or without quotes I get the error?
If I run realplayer manually and open the mov file it works?
If I modify the shortcut to include the mov file name it works?
Have I missed something?
Thanks