运行到这里总会报一个错误:"类型不匹配"
其中InputRecord为string,vbTab为TAB键
请各位高手们帮帮忙,看一下调用时对象为什么不匹配了,BSTR ,long,short分别应该对应vbs的哪种类型?作者: bluewhy83 时间: 2008-5-6 17:36 标题: 想想 想想作者: 没有蛀牙 时间: 2008-5-6 18:14
不懂
关注一下
GetTrimmedQuotedField的里的参数是不是都是指针阿作者: walker1020 时间: 2008-5-6 23:59
类型不匹配 说明你使用的函数的参数类型有问题,QTP 的 帮助文件是否可以帮你解决这个问题?作者: 隐形人 时间: 2008-5-7 08:47
QTP 的 帮助文件是没有这方面的内容的啦,
另外,这个DDVariableStore.dll的方法用VB调用的语句是
Function GetTrimmedQuotedField1(InputRecord As String, fieldID As Integer, _
delimiter As String) As String
If oStrUtils Is Nothing Then Set oStrUtils = CreateObject("DDVariableStore.StringUtilities")
On Error Resume Next
GetTrimmedQuotedField1 = oStrUtils.GetTrimmedQuotedField(1, InputRecord, Chr$(9), fieldID)