Multiple choice technology programming languages

VbOk,VbCancel,VbAbort are all the enumerated members of

  1. MsgboxStyle Enumeration

  2. MsgboxResult Enumeration

  3. CompareMethod Enumeration

  4. None of the above

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

MsgBoxResult enumeration contains return values like VbOk, VbCancel, and VbAbort that indicate which button the user clicked. MsgBoxStyle enumeration (option A) specifies which buttons and icons to display, not which was clicked. CompareMethod is for string comparison.