11-11-2009, 01:43 PM
Hi Srini,
You could use "WaitProperty" method too.
It Waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step.
Syntax:
object.WaitProperty (PropertyName, PropertyValue, [TimeOut in millisec])
Examples:
Try it out & see , It would solve your problem easily
You could use "WaitProperty" method too.
It Waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step.
Syntax:
object.WaitProperty (PropertyName, PropertyValue, [TimeOut in millisec])
Examples:
Code:
VbWindow("FRMDI General").WaitProperty("Text", "FRMDI General", 10000)
VbWindow("FRMDI General").WaitProperty("enabled",True,10000)
Try it out & see , It would solve your problem easily