GetRecord()
Summary
Gets the record handle of the current record of a view.
Syntax
record_handle = GetRecord(string view_name)
| Argument | Contents |
|---|---|
| view_name | The view of interest |
Returns
A string indicating the record handle of the current record, or null if the input view has no current record.
Example
//Open GetRecordCount() and select a county
rh = GetRecord("County")
ShowArray({rh})
Error Codes
| Error Type | Meaning |
|---|---|
| NotFound | The specified view does not exist |
See Also
| Function | Summary |
|---|---|
| LocateRecord() | Locates a record based on the value of a field |
| SetRecord() | Sets the current record of a view |