method ShowFieldErrorHint(Hint: String, FieldName: String)
Display an error hint for a field in a table or for a component on a form.
ShowFieldErrorHint method syntax has these named arguments:
Parameter |
Description |
|---|---|
Hint |
Required. Error hint to be displayed. |
Field Name |
Required. The table field or form component to display the hint on. |
For example for a memory table:
tblMemoryTable1.ShowFieldErrorHint("This is the hint.", "Field1")
will show the hint on Field1 in tblMemoryTable1.
For example for Form Designer:
self.ShowFieldErrorHint("Take a hint.", "eEdit1")
will show the hint on component eEdit1.