a23764996 发表于 2013-3-5 14:49:13

QTP报错:对象不支持此属性或方法


怎么会这样呢急!!!!!!!!!

feiyunkai 发表于 2013-3-5 15:36:43

对象作为函数返回值需要要加set:
GetValue=gValue
改为:
set GetValue=gValue

Public Function GetValue()可以改为:
Public Function GetValue()
       set GetValue=new newClass
End Function

黑羽祭 发表于 2013-3-6 16:38:00

回复 1# a23764996


    楼上正解
写成
Public Function GetValue()
       set GetValue=new newClass
End Function
页: [1]
查看完整版本: QTP报错:对象不支持此属性或方法