Hi,
After you obtain your control via FocusControl, call its parent's Find method. Use the NativeDelphiObject.Name property as its first parameter and the Name property as the second. For example:
obj := someOtherObj.FocusControl;
obj := someOtherObj.Parent.Find('NativeDelphiObject.Name', obj.Name);
This will give you TC's wrapper for this control. You need to do this since FocusControl returns a native VCL object which doesn't have properties and methods added by TC.
------
Yuri
TestComplete Customer Care Engineer
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️