NisHera
12 years agoValued Contributor
How to define String within Sting
I'm trying to get a property check in a grid using AqObject.CheckProperty methoed. There property has to be a string. My object is ABCGrid and property is wValue But I have to pass param...
- 12 years agoIn VBScript, you need to double the quote characters inside the string:
Call aqObject.checkProperty(ABCGrid, "wValue(1, ""Amount"", 0)", 6, myValue)
' ^ ^
' | |
' --------------------------------------------------------
By the way, you can use the property checkpoint wizard to generate the checkpoint code.