User Tools

Site Tools


update_write_from_screen_to_use_variables_.htm
Navigation:  Language Reference > 13 - Built-in Functions >====== UPDATE (write from screen to USE variables) ====== Previous pageReturn to chapter overviewNext page

UPDATE( [first control] [,last control] )

blk2blue.jpg

UPDATE Writes the contents of a control to its USE variable.
first control Field number or field equate label of a control, or the first control in a range of controls.
last control Field number or field equate label of the last control in a range of controls.

UPDATE writes the contents of a screen control to its USE variable. This takes the value displayed on screen and places it in the variable specified by the control's USE attribute.

USE variables are updated automatically by ACCEPT as each control is accepted. However, certain events (such as an ALERTed key press) do not automatically update USE variables. This is the purpose of the UPDATE statement.

UPDATE Updates all controls on the screen.
UPDATE(first control) Updates a specific USE variable from its associated screen control.
UPDATE(first control,last control) Updates the USE variables of an inclusive range of screen controls.

Example:

UPDATE(?)             !Update the currently selected control

UPDATE                !Update all controls on the screen

UPDATE(?Address)      !Update the address control

UPDATE(3,7)           !Update controls 3 through 7

UPDATE(?Name,?Zip)    !Update controls from name through zip

UPDATE(?City,?City+2) !Update city and 2 controls following

See Also:

Field Equate Labels

DISPLAY

CHANGE

update_write_from_screen_to_use_variables_.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1