Re: [Gambas-user] ec statement with parameters containing spaces

2014-07-07 Thread Benoît Minisini
Le 07/07/2014 16:22, John Rose a écrit : > I have this code: > Print "mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & > sVideoPath & "'", "'" & sAudioPath & "'" > Exec ["mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & > sVideoPath & "'", "'" & sAudioPath & "'"] To sOut

[Gambas-user] ec statement with parameters containing spaces

2014-07-07 Thread John Rose
I have this code: Print "mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & sVideoPath & "'", "'" & sAudioPath & "'" Exec ["mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & sVideoPath & "'", "'" & sAudioPath & "'"] To sOutput I'm using the single quotes since they are requ