Forum Discussion
Dmitry_Nikolaev
Staff
17 years agoHi Steve,
Could you please tell me in what version of TestComplete this worked?
Here is how you can make this work at the moment:
I'm coming across a situation where setting a value to a DevComponent object that used to work before, using its 'Value' property, no longer works for one reason or another.
Could you please tell me in what version of TestComplete this worked?
Here is how you can make this work at the moment:
'...
Dim obj
Set obj = ...WPFObject("IntegerInput", "", 1)
intvalue = 123
dotNETvalue = <proces name>.AppDomain("<domain name>").dotNET.System.Int32.Parse(intvalue)
obj.Value = dotNETvalue
'...