ErrorBox Class (Typed) |
Namespace: XSharp.VO.SDK
The ErrorBox type exposes the following members.
Name | Description | |
---|---|---|
Beep |
A logical value indicating whether to use a system default beep when displaying the text box. TRUE indicates that there will be a beep; FALSE indicates that there will be no beep.
(Inherited from TextBox.) | |
Caption |
A string value representing the TextBox caption.
(Inherited from TextBox.) | |
Message |
A string value representing the TextBox message.
(Inherited from TextBox.) | |
Type | (Inherited from TextBox.) |
Name | Description | |
---|---|---|
Destroy | Free memory resources allocated for a VObject object and its derived objects. (Inherited from VObject.) | |
Show |
Display this message box and return a value indicating how it was closed.
(Inherited from TextBox.) |
1METHOD Start() CLASS App 2oMyWin := TopAppWindow{} 3oMyWin:Show() 4oErrBox := ErrorBox{oMyWin,; 5"Oops, We have an error!"} 6oErrBox:Show() 7SELF:Exec()