11-24-2009, 01:01 AM
Did you try:
You might also try using:
Hope this works.
Code:
Vbedit("txtAge").Set "1" <--- just to set focus to field
VbEdit("txtAge").Type micBack <---backspace
Vbedit("txtAge").Set "40" <----real value
You might also try using:
Code:
'use tab to get to the txtAge field
Vbedit("AnotherObject").Type micTab + micTab
Vbedit("txtAge").Type micBack
Vbedit("txtAge").Type "40"
Hope this works.