Script Steps Reference

Table Of Contents
Windows script steps
F
ILEMAKER PRO SCRIPT STEPS REFERENCE 167
Example 2
Closes the current window if it is hidden.
If [Get ( WindowVisible ) = 0]
Close Window [Current Window]
End If
Example 3
Closes the Invoice Details window if it is open.
If [PatternCount ( WindowNames ( Get ( FileName ) ) ; "Invoice Details" )]
Close Window [Name: "Invoice Details"]
End If