gui module | helpdlg >> |
h = errordlg() |
h = errordlg(text_error) |
h = errordlg(text_error, title) |
h = errordlg(text_error, title, 'on') |
a string or a cell of string: the error message.
a string: the title of the dialog box.
a QObject handle.
errordlg creates an error dialog box.
h = errordlg(text_error, title, 'on') specifies whether to replace an existing dialog box having the same name.
h = errordlg()
h = errordlg('error string')
h = errordlg('error string', 'dialog title')
h = errordlg('error string', 'dialog title')
h = errordlg('error string', 'dialog title', 'on')
warndlg, questdlg, helpdlg, msgbox.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET