ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / MDI functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
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
Example
AliasName is string
i is int = 1
AliasName = MDIEnumChild(i)
WHILE AliasName <> ""
Trace("MDI child # " + i + ": " + AliasName)
// Next child window
i++
AliasName = 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 ("").
Component: wd290obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help