Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have this vbscript statement which functions in QV11 but doesn't in QV12.1:-
Set varResponse = ActiveDocument.Variables("vResponseText")
Err.Description content is 'Object doesn't support this property or method'
I can't find an API guide for QV12 to check if this object is indeed supported in QV12. Can anyone help with both the error and the API guide?
Thanks.
Hi Kevin,
Try the following:
Set varResponse = ActiveDocument.Variables("vResponseText").getcontent.string
Hi Kevin,
Try the following:
Set varResponse = ActiveDocument.Variables("vResponseText").getcontent.string