Run DOS command

  • Thread starter Thread starter KalliKay
  • Start date Start date
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
 
Back
Top