| 4D v13.4GOTO OBJECT | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|  | 
    4D v13.4
 GOTO OBJECT 
         | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| GOTO OBJECT ( {* ;} object ) | ||||||||
| Parameter | Type | Description | ||||||
| * | Operator |   | If specified = object is an object name (string) If omitted = object is a field or a variable | |||||
| object | Field, Variable |   | Object name (if * specified) or Field or Variable (if * omitted) to go to | |||||
The GOTO OBJECT command is used to select the data entry object object as the active area of the form. It is equivalent to the user’s clicking on or tabbing into the field or variable.
If you specify the optional * parameter, you indicate an object name (a string) in object. If you omit the optional * parameter, you indicate a field or a variable in object. In this case, specify a field or variable reference (field or variable objects only) instead of a string. For more information about object names, see the section Object Properties.
To remove any focus in the current form, call the command while passing an empty object name in object (see example 2).
The GOTO OBJECT command can be used in the context of a subform. When it is called from a subform, it first looks for the object in the subform, then, if the search does not find anything there, it extends the search to objects of the parent form.
The GOTO OBJECT command can be used in both ways:
 GOTO OBJECT([People]Name) ` Field Reference
 GOTO OBJECT(*;"AgeArea") ` Object NameYou don't want any object of the form to have the focus:
 GOTO OBJECT(*;"")See the example for the command REJECT.
	Product:  4D
	Theme:  Entry Control
	Number:  
        206
        
        
        
	
	Modified:  4D v11 SQL  
	Renamed: 4D v12
	Modified:  4D v12
Subform***