rv =
win32_MessageBox (title, text)
¶rv =
win32_MessageBox (title, text, MboxType)
¶Display a message box using the win32 API.
title MessageBox title string
text MessageBox text string
MBoxType can be an integer or a string.
For integer values, consult <windows.h>
The following string values are recognized:
MB_OK
MB_OKCANCEL
MB_ABORTRETRYIGNORE
MB_YESNOCANCEL
MB_YESNO
MB_RETRYCANCEL
Default is MB_OK
Returns a value rv:
User Clicked OK
User Clicked Cancel
User Clicked Abort i
User Clicked Retry
User Clicked Ignore
User Clicked Yes
User Clicked No
User Clicked Try Again
User Clicked Continue
Package: windows