Forum Discussion
irina_lukina
15 years agoSuper Contributor
Hi Michael,
Try using the following code snippet:
appChildren = aliases.myApp.ChildCount
'Do soething suspect - like save a record
if aliases.myApp.WaitProperty("ChildCount", appChildren +1, 1000) then
'A new child was found so get a handle on the dialog
set dialog = aliases.myApp.FindChild("WndStyles", WS_POPUP, 10)
end if
Does it help?