Shell$
StringaQuotata = Shell ( Stringa )
StringaQuotata = Shell$ ( Stringa )
Quota una stringa con le virgolette per poter inviare senza problemi un comando alla
SHELL.
Esempio
'Questa routine creerà un file nella tua cartella home con il nome "che nome stupido x un file % $ !.txt"
'La stringa creata da Shell$ verrà stampata e il file aperto.
Public Sub Main()
Dim sString As String
sString = Shell$("che nome stupido x un file % $ !.txt")
Print sString
Shell "echo " & sString & " >> " & user.home &/ sString
Shell "cat " & User.home &/ sString
End
Vedi anche