DataServer.FieldStatus Method | |
Determine the status of a field in this data server after the last operation.
Namespace:
VO
Assembly:
VOSystemClasses (in VOSystemClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD FieldStatus(
nFieldPosition
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual FieldStatus(
Usual nFieldPosition = default
)
Request Example
View SourceParameters
- nFieldPosition (Optional)
- Type: Usual
The name, number, or symbol representing the desired field.
Return Value
Type:
Usual
A HyperLabel object if any error condition had occurred or if a validation has failed, NIL if everything is OK, if the validation passed, or if there has been no validation attempt.
Remarks
In particular, DataServer:FieldStatus() can be used to find out more about a validation failure. By accessing the properties of this hyperlabel, you can retrieve not only a description of the condition that was raised, but also context-sensitive help on it. For example:
1oDataServer:FieldStatus(#LastName):Caption
2oDataServer:FieldStatus(#LastName):Description
3oDataServer:FieldStatus(#LastName):HelpContext
See Also