Edit history

Edit: -1 of 1
Time: 2007-03-30 11:59:54
Note: /dabosite/wiki/DaboUiFunctions/edit

changed:
-
Signature:

 <pycode>dabo.ui.exclaim(message="Important", title=None, parent=None)</pycode>

Description:

 Display a brief important message to the user, along with the platform-specific "Exclamation" icon.

Returns:

 None

Comments:

 Like [dabo.ui.info](), this displays a modal message to the user, and the user must click the 'OK' button to dismiss the message and proceed. The difference is that the icon displayed is the platform-specific icon for an exclamation mark, indicating a problem that is important, but not fatal.

Examples:

 <pycode>dabo.ui.exclaim("Printer not responding!")
dabo.ui.exclaim("No records match your search expression", title="Empty Results")</pycode>