Code:
	Private Sub Downloader1_DownloadComplete(MaxBytes As Long, SaveFile As String)
    If MsgBox("Donwnload Finished. Would you like to install now?", vbInformation + vbYesNo, "Blue Cherry Media Player") = vbYes Then
        Filename = App.Path + "\BCMP " + Site + ".zip"
        Call OpenDownload
    End If
End Sub
Sub OpenDownload()
    Shell Filename, vbNormalFocus
End Sub
Well I have made a media player that I think is actually very good but I thought the simplest thing ever is now turning out to be a pain in the a**.
Basically I use an Inet control and it connects to a text document on my site. If the text document has a different number then the file version of the exe (File version is included in the coding) then it downloads the new file. There really isnt a problem with that. Its after the download is finished a message box comes up saying would you like to install now? and if you click yes it will execute the install (since im still working out the bugs its just a .zip archive). When it gets to the shell part I get Invalid Procedure call or argument and it highlights:
Code:
	Shell Filename, vbNormalFocus
Help would be appreciated.
 
	
Comment