Shell$
QuotedString = Shell ( String )
QuotedString = Shell$ ( String )
Escapa y enmarca una cadena de manera que pueda ser usada en un comando con
SHELL.
Ejemplos
'This routine will create a file in your home folder with the name "what a stupid name 4 a file % $ !.txt"
'The string created by Shell$ will be printed and the file opened.
Public Sub Form_Open()
Dim sString As String
sString = Shell$("what a stupid name 4 a file % $ !.txt")
Print sString
Shell "echo " & sString & " >> " & user.home &/ sString
Shell "xdg-open " & User.home &/ sString
End
Vea tambien