|
|
|
|
|
MDIEnumChild (Function) In french: MDIEnumèreFille Returns the alias of the specified MDI child window. In a loop, MDIEnumChild can be used to get the aliases of the MDI child windows NomAlias is string
i is int = 1
NomAlias = MDIEnumChild(i)
WHILE NomAlias <> ""
Trace("Fille MDI n° " + i + " : " + NomAlias)
i++
NomAlias = MDIEnumChild(i)
END
Syntax
<Result> = MDIEnumChild(<Number of Child Window>)
<Result>: Character string - Alias of the specified MDI child window
- Empty string ("") if an error occurred.
<Number of Child Window>: Integer Number of the child window used to find its alias. If this parameter is greater than the number of opened MDI child windows, <Result> will correspond to an empty string ("").
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|