本文介绍了如何使HTA应用程序接受命令行参数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Sub Window_onLoad
    arrCommands = Split(ITTool.commandLine, chr(34))
    For i = 3 to (Ubound(arrCommands) - 1) Step 2
        MsgBox arrCommands(i)
    Next
End Sub

运行HTA应用程序时,我得到:

When I run my HTA application, I get:

我正在尝试制作一个接受命令行参数(可选).

I am trying to make an HTA app that accepts command line arguments (optional).

推荐答案

您的脚本部分包含 Option Explicit 语句.这使得必须先定义变量,然后才能使用它们.在您的过程中添加一行Dim arrCommands, i:

Sub Window_onLoad
    Dim arrCommands, i
    arrCommands = Split(ITTool.commandLine, chr(34))
    For i = 3 to (Ubound(arrCommands) - 1) Step 2
        MsgBox arrCommands(i)
    Next
End Sub

这篇关于如何使HTA应用程序接受命令行参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 18:07