Launching a batch file

B

Ben

Is it possible to launch a batch file from within an Excel macro. If so what
is the command I need in VBA assuming the batch file is in
c:\belfry\convert.bat
Thank you
 
D

Dave Peterson

Take a look at VBA's help for Shell.
Is it possible to launch a batch file from within an Excel macro. If so what
is the command I need in VBA assuming the batch file is in
c:\belfry\convert.bat
Thank you
 
C

Chip Pearson

Use the Shell command. E.g.,

Shell "c:\belfry\convert.bat", vbNormalFocus


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

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