Sets the specified value of an identification property for an object.
QTP-SetTOProperty

Syntax –

DbTable(description).SetTOProperty Property, Value 

Example –

The following example uses the SetTOProperty method to modify the database table’s Source property, and then retrieves and displays the new value.

DbTable("DbTable").Check CheckPoint("DbTable")

IsExists = DbTable("DbTable").Exist (0)

If IsExists Then

DbTable("DbTable").SetTOProperty "Source", "SELECT * FROM ADDRESS"

Dim NewSQL

NewSQL = DbTable("DbTable").GetTOProperty ("Source")

MsgBox NewSQL

End If 

Additional Reading

SetTOProperty