- Parameters passed to the sibling window to open
- Opening mode of window
- Opening the same window several times
- Closing a window
- Title of window to open
- Opening a component window
OpenSister (Function) In french: OuvreSoeur Opens a non-modal sibling window. OpenSister is also used to: - define the display position of sibling window,
- pass parameters to the sibling window.
When calling the function OpenSister, the following operations are performed: - the event "Global declarations" of the sibling window is run,
- running the initialization events of the controls (the order is undefined),
- running the processes following the call to OpenSister of calling window,
- displaying the sibling window.
Remark: By default, the sibling window keeps focus once it is opened. Versions 16 and later New in version 16 Versions 24 and later New in version 24
// Open the sibling window named "EDT_EditWindow" // without positioning and without passing parameters OpenSister(WIN_EditWindow)
Syntax
Opening a sibling window Hide the details
OpenSister(<Window name> [, <Parameter 1> [... [, <Parameter N>]]])
<Window name>: Character string (with or without quotes) - Name of sibling window to open.
- Name and full path of sibling window (".WDW" file) to open.
<Parameter 1>: Type of value sent to the window (optional) First parameter that will be passed to the "Global declarations" event of the window to open. This parameter is passed by value and it is considered as being a variable global to the window. This parameter cannot correspond to an array variable (arrays can only be passed by reference). <Parameter N>: Type of value sent to the window (optional) Nth parameter that must be passed to the "Global declarations" event of the window to open. This parameter is passed by value and it is considered as being a variable global to the window. This parameter cannot correspond to an array variable (arrays can only be passed by reference).
Opening a sibling window while defining its position and its display level Hide the details
OpenSister(<Window name [ + <Level>]> [, <Parameter 1> [... [, <Parameter N>]]])
<Window name [ + <Level>]>: Character string (with or without quotes) Used to specify: - the window to open (<Window name>). This parameter can correspond to:
- Name of sibling window to open.
- Name and full path of sibling window (".WDW" file) to open.
By default, the window is displayed according to the position defined in the editor. You have the ability to define the display position of the window. The window name is completed by the display coordinates of window when it is opened. This parameter has the following format:
"[<Alias>] = <Window name> [, <Y>, <X>]"
where:
- <Alias>: alias of the window if the same window is opened several times.
- <Window name>: name of sibling window to open.
To avoid giving focus to the opened window, use the following notation: <Window name> + NoFocus. The event "Gain of focus" of the sibling window will not be run. Caution: in this case, the window name must be enclosed in quotes. - <Y>: vertical display coordinate (in pixels) of window (in relation to the top left corner of screen or parent window).
- <X>: horizontal display coordinates (in pixels) of window (in relation to the top left corner of screen or parent window).
Remark: The coordinates are ignored if the window is defined as centered in the editor. We recommend that you use WinSize to modify the display position of a window. - the window display level (<Level>):
| | Above | Window opened above all its sibling windows. | AboveAll | Window opened above all the other windows (including the windows of other applications). | Remark: If two windows are opened with the same constant (Above or AboveAll), the second window will be opened above the first one. We recommend that you use WinStatus to modify the display level of a window.
<Parameter 1>: Type of value sent to the window (optional) First parameter that will be passed to the "Global declarations" event of the window to open. This parameter is passed by value and it is considered as being a variable global to the window. This parameter cannot correspond to an array variable (arrays can only be passed by reference). <Parameter N>: Type of value sent to the window (optional) Last parameter that will be passed to the "Global declarations" event of the window to open. This parameter is passed by value and it is considered as being a variable global to the window. This parameter cannot correspond to an array variable (arrays can only be passed by reference). Remarks Parameters passed to the sibling window to open The parameters are retrieved in the event "Global declarations" of the window. Simply write the following line of code at the start:
PROCEDURE <Window name>(<Parameter1> [, <Parameter2> [, ...]])
These parameters are passed by value and not by reference. Opening mode of window The window is opened in non-modal mode: - the parent window remains the current window.
- once the sibling window is opened, the processes following the call to OpenSister in the calling window are run.
- the user will have the ability to click one of the parent windows of current window.
Opening the same window several times - If the same window is opened several time, we recommend that you use an alias. This alias is used to differentiate between each window.
- The position of the calling window (relative to the screen or to the sibling window) is chosen when the window is described in the editor. If the same window is opened several times (with an alias), the display positions must be modified at each opening (otherwise the windows will be stacked).
- The number of windows that can be opened simultaneously depends on the available memory.
Closing a window A window opened with OpenSister can be closed with Close (without parameters) from any event: - of the window,
- of a window control.
This page is also available for…
|
|
|
| |
| | Exemplo OpenSister
n_soma is int=0
OpenSister(WIN_aguarde,"Aguarde...") nTotal is int=500000 LOOP n_soma++ Gauge(n_soma,nTotal) IF n_soma>nTotal THEN Close(WIN_aguarde) BREAK END END
//Em Frances
n_somaf est entier=0 OuvreSoeur(WIN_aguarde,"Aguarde...") nTotalf est entier=200000 BOUCLE n_soma++ Jauge(n_soma,nTotal) SI n_soma>nTotal ALORS Ferme(WIN_aguarde) SORTIR FIN FIN
//Blog Com Video e Exemplo http://windevdesenvolvimento.blogspot.com.br/2016/07/curso-windev-funcoes-windowsjanela-001.html https://www.youtube.com/watch?v=SBMbxY9FKN8
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
|