ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Window functions
  • Opening a child window above the other ones
  • Multiple openings of a child window
  • Advanced opening of a child window
OpenChild (Example)
Opening a child window above the other ones
WINDEVUniversal Windows 10 AppJava The following code is used to open the child window named "WIN_EditWindow" above all the other sibling windows.
// Open the child window named "WIN_EditWindow"
// above all the other sibling windows
OpenChild("WIN_EditWindow"+Above)
// equivalent to:
//    OpenChild(WIN_EditWindow)
//    WinStatus(WIN_EditWindow, Above)
Multiple openings of a child window
This example is used to open the child window named "WIN_EditWindow" twice. An alias is specified for each one of the windows
OpenChild("Edit1 = WIN_EditWindow, 10, 20")
OpenChild("Edit2 = WIN_EditWindow, 10, 500")
// The display position is specified at each opening
// to avoid the windows from being stacked
Advanced opening of a child window
WINDEVUniversal Windows 10 AppJava The following code is used to open the child window named "WIN_EditWindow" above all the other application windows. During this opening, the window is positioned and parameters are passed to it.
OpenChild("WIN_EditWindow, 10, 20"+Above, Value1, Value2)
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help