变量总是为空?!
function login(usn,psw)With Dialog("text:=Login")
.WinEdit("attached text:=Agent Name:").Set usn
.WinEdit("attached text:=Password:").Set psw
.WinButton("text:=OK").Click
End With
End function
call login (mercury,mercury)
大家帮忙看看这个方法,我调用这个方法,明明login (mercury,mercury)这写了值,怎么usn和psw还是empty呢?mercury没有赋值给usn ,这是怎么回事呢? 回复 1# leejeff@26
问题在:
call login (mercury,mercury)
你把mercury加上引号。。。不加引号vbs默认是变量了当然是空值了 非常感谢这位大侠!果然如此 :) 知道call login (“mercury”,“mercury”) 与 call login “mercury”,“mercury” 之间的区别嘛? 没加引号
页:
[1]