|
|
|
|
|
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.
Warning: This function is for advanced use only..
HandleParent is system int = LigneCommande("HPARENT")
IF HandleParent <> 0 THEN
Trace(HandleParent)
HandleParentNext(HandleParent)
END
Open(FEN_Fenêtre1)
EndProgram()
Parent is system int = Handle("")
ExeRun("MonApplication.exe" + " " + "/HPARENT=" + Parent)
Syntax
HandleParentNext(<Window handle>)
<Window handle>: Integer Handle of the parent window to use.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|