QTP的vbs脚本里面,Function如何返回dictionary对象
写vbs脚本的时候,需要定义一个全局的dictionary对象来接受某function返回值,两个问题,1。function可以返回对象么?
2。如何定义全局对象来接受函数的返回值呢? 用SET 简单的实例吧
Set d = DD
MsgBox d.Item(0)
Function DD()
Set oDict = CreateObject("Scripting.Dictionary")
oDict.Add 0,"100"
Set DD = oDict
End Function 谢谢楼上两位,set果然是有用的。我原来用的clone,怎么都没有用
页:
[1]