我试图在报告中验证用户输入长度,它应该是整数且长度为16位。是否可以在客户端验证?
答案 0 :(得分:0)
1: 'Invalidates the duration between the start date and end date 2: Function ValidateParam(Parameter) as Boolean 3: If LEN(CSTR(Parameter)) = 16 Then 5: Return"True" 6: Else 7: Return "False" 8: End if 9: End Function
然后,您可以根据此功能隐藏或显示错误消息文本框。 像this.
一样