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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top