DataInvalid(InvalidText)
Normally used in the CheckData event to indicate that the input of the user is not correct and that the user should validate the values.
Parameters:
InvalidText | The text that should be displayed to the user. |
Remarks:
This function will only work in the CheckData event.
Example:
Sub Plugin_CheckData()
s=GetUIElement(1) 'get data entered from user
if Len(s)<=0 then 'if user has not entered anything
Call DataInvalid("Please enter a value.")
end if
End Sub