AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones MDI
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
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
Ejemplo
AliasName is string
i is int = 1
AliasName = MDIEnumChild(i)
WHILE AliasName <> ""
	Trace("Girl MDI n° " + i + ": " + NomAlias)
	// Next child window
	i++
	AliasName = MDIEnumChild(i)
END
Sintaxis
<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 ("").
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local