|
|
|
|
HandleParentNext (Function) In french: HandleParentSuivant 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.
Caution: This is an advanced function.
// 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)
Syntax
HandleParentNext(<Window handle>)
<Window handle>: Integer Handle of the parent window to use.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|