INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Interface on the MessageBox function. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_MESSAGE_BOX
feature -- Basic operations

message_box (a_text, a_title: STRING; a_style: INTEGER)
-- Show a message box with `a_text' inside and
-- `a_title' using `a_style'.
-- See class WEL_MB_CONSTANTS for `a_style' value.
require
text_not_void: a_text /= void
title_not_void: a_title /= void

error_message_box (a_text: STRING; a_style: INTEGER)
-- Show a error message box with `a_text'
-- inside using `a_style'.
-- See class WEL_MB_CONSTANTS for `a_style' value.
require
text_not_void: a_text /= void
feature -- Status report

message_box_result: INTEGER
end -- class WEL_MESSAGE_BOX

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES