I got the following code from designer help. After the Msgbox shows the validate message in a document’s column edition, Notes shows another Msgbox with this message:“Error validating column value”
How can I avoid this second message?
Case VALIDATE_REQUEST
Select Case Colprogname(0)
Case "Who"
If Fulltrim(Columnvalue(0)) = "" Then
Messagebox "You must enter a Name",, "No value in column"
Continue = False
End If
Case Else
If Isnumeric(Columnvalue(0)) Then
If Cint(Columnvalue(0)) < 0 Then
Messagebox "Value must be greater than 0",, "Negative value"
Continue = False
End If
Else
Messagebox "Value must be numeric",, "Non-numeric value"
Continue = False
End If
End Select