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 / Funciones estándar / Funciones de Windows / Funciones de eventos de Windows
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
Forces the parent of the next window to open. This function must be used just before Open.
This function allows a WINDEV window:
  • to be child of another application.
  • to be child of a non-WINDEV window.
Warning: This function is for advanced use only..
Ejemplo
// Opening code of the application project
ParentHandle is system int = CommandLine("HPARENT")
IF ParentHandle <> 0 THEN
 Trace(ParentHandle)
	HandleParentNext(ParentHandle)
END
Open(WIN_Window1)
EndProgram()

// Code of the caller
Parent is system int = Handle("")
ExeRun("MyApplication.exe" + " " + "/HPARENT=" + Parent)
Sintaxis
HandleParentNext(<Window handle>)
<Window handle>: Integer
Handle of the parent window to use.
Observaciones
Reminder: The window handle can be retrieved using functions Handle or SysWinHandle.
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 14
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 28/03/2025

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