Run DOS command

J

Joel

You simply need to put the command into a shell function

shell("command String")

The only problem you may have is with the double quote. You can use chr(34)
for the double quote.

String1 = "Abc"
String2 = "Def"

String3 = String1 & chr(34) & String2
 
Top