vb 调用 VBS

vb.net调用

vbsfile= chr(34)+ app.path+ "\GB.vbs"+chr(34)
shell "wscript.exe " +  vbsfile


关于vb6.0 调用/运行 VBS 几种方式:

一:Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long 

ShellExecute Me.hwnd, "open", "c:\test.vbs", , , vbNormalFocus  

二: 
          Shell "cmd.exe /c ""c:\test.vbs"""   
   
    附:c:\test.vbs运行完cmd.exe自动关闭 

隐藏cmd.exe 

Shell "cmd.exe /c ""c:\test.vbs""", vbHide   

三:Function LoadVBS() 
Dim RetVal 
Set WshShell = CreateObject("Wscript.Shell") 
RetVal = WshShell.Run("c:\test.vbs", 1, True) 
Set WshShell = Nothing 
End Function    

四:

    Shell "wscript.exe   c:\test.vbs", 1   
   

五:添加一个Microsoft script control 1.0 控件

Private Sub Command1_Click()
    Dim FileName     As String
                  Dim VbsStr     As String
                  Dim FileID     As Long
                  Dim I     As Long
                    
                  FileID = FreeFile
                  Open “c:\test.vbs" For Input As #FileID
                          VbsStr = StrConv(InputB$(LOF(FileID), 1), vbUnicode)         ' 把vbs的代码读入变量
                  Close #FileID
    
                  ScriptControl1.AddCode VbsStr        
End Sub

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值