码迷,mamicode.com
首页 > 编程语言 > 详细

VBA调用DOS程序两种方法

时间:2017-05-29 22:57:05      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:又能   obj   stream   pat   out   调用   std   blog   vba   

    Set wsh = VBA.CreateObject("WScript.Shell")
    wsh.Run strExePath & " g", vbHide, True
    Set wshOut = wsh.exec(strExePath & " g").StdOut
    
    While Not wshOut.AtEndOfStream
        sLine = wshOut.ReadLine
        Debug.Print sLine
    Wend

 

run可以隐藏窗体

exec可以获取dos打印输出值

貌似没有即能隐藏窗体又能获取打印结果的办法。

VBA调用DOS程序两种方法

标签:又能   obj   stream   pat   out   调用   std   blog   vba   

原文地址:http://www.cnblogs.com/xpvincent/p/6919216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!