Multiple choice technology programming languages

What will happen if itemerror event returns 3?

  1. Reject the data value with no message box

  2. Accept the data value

  3. Reject the data value but allow focus to change

  4. Reject the data value and show an error message box

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In PowerBuilder's ItemError event, return code 3 means 'Reject the value' (discard invalid data) while 'allow focus to change' (user can move to another field). This differs from return code 2 (reject with message box) and return code 1 (accept the value).