Whenever I use Command I notice quotes are placed around the filename.
just do this
This may not be your problem, but it was for me.Code:Dim MyCommandLine As String MyCommandLine = Replace(MyCommand, Chr$(34), " ") MyCommandLine = Trim$(MyCommandLine) Open MyCommandLine ' etc 'etc




Reply With Quote