- Codes executed at closing
- Closing according to the type of window
- Last project window
- First project window
- Value returned to the Open function
- Value returned when closing a child window
- Alt + F4 keys
- Equivalence
Close (Function) In french: Ferme
// Close the "WIN_Edit" window Close(WIN_Edit)
Versions 19 and later New in version 19 Syntax
Close([<Window name> [, <Returned value> [... [, <Returned value N>]]]])
<Window name>: Optional character string (with or without quotes) Name of window to close. If this parameter is not specified or if it corresponds to an empty string (""), the current window is closed. <Returned value>: Type corresponding to the returned value (optional) Value returned by the window when it is closed.
Versions 18 and later New in version 18You have the ability to return: - simple types (character string, boolean, ...).
Versions 15 and lateradvanced types: structure, dynamic structure, class, advanced type, array, associative array, queue, stack, list. New in version 15advanced types: structure, dynamic structure, class, advanced type, array, associative array, queue, stack, list. advanced types: structure, dynamic structure, class, advanced type, array, associative array, queue, stack, list.
<Returned value N>: Type corresponding to the returned value (optional) Versions 19 and later New in version 19
Remarks Codes executed at closing - When closing a window:
- The current process is permanently interrupted.
- The "Closing" window event is run.
- If ReturnToCapture is called in the "Closing" event, the window is not closed.
- If Close is run in a procedure called by Timer, WinStatus or CurrentWin must be used to confirm the existence of the window to close, otherwise all open windows may be closed. For example:
// Procedure called by timer Window is string Window = CurrentWin() IF Window <> "Window name" THEN Close() END
Closing according to the type of window - If the window to close is a parent window with child windows, these child windows will be closed first (their closing code is run).
- If the window to close is a child window, the parent window becomes the current window. The "gain of focus" code of parent window is run.
Last project window If the last project window is closed, the "Closing" project event is run before the end of the program. Versions 18 and later New in version 18Alt + F4 keys Pressing Alt + F4 can trigger several behaviors: - If the window contains an "Abandon" button, the process associated with the abandon button is run.
- If the window contains a button whose shortcut is Alt + F4, the process associated with this button is run.
- If the window contains no abandon button and no button whose shortcut is Alt + F4, the closing process of window is run and the window is closed (except if ReturnToCapture is called).
- If a window is opened from a program in external language, Alt + F4 returns "ESC" in WdKey.
Equivalence The following code line:
WinStatus(<WindowName>, NotFound)
is equivalent to:
This page is also available for…
|
|
|
| |
| Aula 1163 WinDev Curso Iniciante ErpAmarildoniciante 020 Codigo do SELECIONA EMPRESA |
|
| VAMOS FAZER O CODIGO PARA SELECIONAR A EMPRESA, CLICANDO NA TABELA
In this class today LET'S MAKE THE CODE TO SELECT THE COMPANY, CLICKING ON THE TABLE
En esta clase de hoy
VAMOS HACER EL CODIGO PARA SELECCIONAR LA EMPRESA, CLICANDO EN LA TABLA
//================= gn_retorna_id_empresa_codigo=TABLE_QRY_RELACAO_EMPRESAS.COL_EmpresaID gs_retorna_nome_Empresa=TABLE_QRY_RELACAO_EMPRESAS.COL_Razao_social Close(WIN_RELACAO_EMPRESAS,gn_retorna_id_empresa_codigo,gs_retorna_nome_Empresa) //=================
Blog com video e exemplo
http://windevdesenvolvimento.blogspot.com.br/2017/05/aula-1163-windev-curso-iniciante.html
https://www.youtube.com/watch?v=qNOwvs8Kfxo
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
|