4D v16.3

LOAD VARIABLES

Home

 
4D v16.3
LOAD VARIABLES

LOAD VARIABLES 


 

LOAD VARIABLES ( document ; variable {; variable2 ; ... ; variableN} )  
Parameter Type   Description
document  String in Document containing 4D variables
variable  Variable in Variables to receive the values

The LOAD VARIABLES command loads one or more variables from the document specified by document. The document must have been created using the SAVE VARIABLES command.

The variables variable, variable2...variableN are created; if they already exist, they are overwritten.

If you supply an empty string for document, the standard Open File dialog box appears, so the user can choose the document to open. If a document is chosen, the 4D system variable Document is set to the name of the document.

In compiled databases, each variable must be of the same type as those loaded from disk.

WARNING: This command does not support array variables. Use the new BLOB commands instead.

Example  

The following example loads three variables from a document named UserPrefs:

 LOAD VARIABLES("User Prefs";vsName;vlCode;vgIconPicture)

If the variables are loaded properly, the OK system variable is set to 1; otherwise it is set to 0.



See also 

BLOB TO DOCUMENT
BLOB TO VARIABLE
DOCUMENT TO BLOB
RECEIVE VARIABLE
VARIABLE TO BLOB

 
PROPERTIES 

Product: 4D
Theme: Variables
Number: 74

The OK variable is changed by the commandThis command modifies the system Document variableThis command can be run in preemptive processes

 
HISTORY 

Created: < 4D v6

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)