|
|
|
|
|
HandleParentNext (Function) 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..
ParentHandle is system int = CommandLine("HPARENT")
IF ParentHandle <> 0 THEN
Trace(ParentHandle)
HandleParentNext(ParentHandle)
END
Open(WIN_Window1)
EndProgram()
Parent is system int = Handle("")
ExeRun("MyApplication.exe" + " " + "/HPARENT=" + Parent)
Sintaxis
HandleParentNext(<Window handle>)
<Window handle>: Integer Handle of the parent window to use.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|