4D v14.3

CLOSE WINDOW

Home

 
4D v14.3
CLOSE WINDOW

CLOSE WINDOW 


 

CLOSE WINDOW {( window )} 
Parameter Type   Description
window  WinRef in Window reference number, or Frontmost window of current process, if omitted

CLOSE WINDOW closes the active window opened by the Open window or Open form window command in the current process. CLOSE WINDOW has no effect if a custom window is not open; it does not close system windows. CLOSE WINDOW also has no effect if called while a form is active in the window. You must call CLOSE WINDOW when you are done using a window opened by Open window or Open form window.

It is useless to pass a number to CLOSE WINDOW when closing a window previously opened by the Open window or Open form window function, since a call to CLOSE WINDOW will always close the last window created by one of these commands.

If you pass an external window reference number in the Window parameter, CLOSE WINDOW closes the specified external window. For more information about external windows, refer to the Open external window function.

Example  

The following example opens a window and adds new records with the ADD RECORD command. When the records have been added, the window is closed with CLOSE WINDOW:

 Open window(5;40;250;300;0;"New Employee")
 Repeat
    ADD RECORD([Employees]` Add a new employee record
 Until(OK=0) ` Loop until the user cancels
 CLOSE WINDOW ` Close the window

 
PROPERTIES 

Product: 4D
Theme: Windows
Number: 154

 
HISTORY 

Created: < 4D v6

 
SEE ALSO 

Open external window
Open form window
Open window

 
ARTICLE USAGE

4D Language Reference ( 4D v11 SQL Release 6)
4D Language Reference ( 4D v12.4)
4D Language Reference ( 4D v14 R2)
4D Language Reference ( 4D v14 R3)
4D Language Reference ( 4D v13.5)
4D Language Reference ( 4D v14.3)
4D Language Reference ( 4D v14 R4)