DbServer.FieldStatus Method |
Return the status of a field after the last operation.
Namespace:
VO
Assembly:
VORDDClasses (in VORDDClasses.dll) Version: 2.7
Syntax VIRTUAL METHOD FieldStatus(
uField AS USUAL := NIL
) AS USUAL
public override Usual FieldStatus(
Usual uField = null
)
Request Example
View SourceParameters
- uField (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
DBServer: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 but also context-sensitive help on the condition that was raised:
1oDBServer:FieldStatus(#LastName):Caption
2oDBServer:FieldStatus(#LastName):Description
3oDBServer:FieldStatus(#LastName):HelpContext
See Also