vb命令行参数

2024-12-16 00:32:37
推荐回答(2个)
回答1:

在VB里边可以用Command常数获得当前程序后面跟的参数
但是Command得到的是全部的参数
如Text1.Caption=Command
这样会把整个参数(就像你的/p:1/s:2)显示在文本框里,剩下的工作就是简单的处理下字符串
让他照你的意思显示好了

回答2:

在程序里面获取参数
根据参数
运行不同的代码
dim
cmdstring
as
string
cmdstring
=
Command()
cmdstring
=
Trim(cmdstring)
If
cmdstring
=
"/no"
Then
.....
end
if
If
cmdstring
=
"/off"
Then
.....
end
if