Gambas Documentation
Application Repository
Code Snippets
Compilation & Installation
Components
gb
gb.args
gb.cairo
gb.chart
gb.clipper
gb.complex
gb.compress
gb.crypt
gb.data
gb.db
gb.db.form
gb.db.mysql
gb.db.odbc
gb.db.postgresql
gb.db.sqlite2
gb.db.sqlite3
gb.dbus
gb.dbus.trayicon
gb.debug
gb.desktop
gb.desktop.gnome.keyring
gb.desktop.x11
gb.eval
gb.eval.highlight
gb.form
gb.form.dialog
gb.form.editor
gb.form.htmlview
gb.form.mdi
gb.form.print
gb.form.stock
gb.form.terminal
gb.gmp
gb.gsl
gb.gtk
gb.gtk.opengl
gb.gtk3
gb.gtk3.opengl
gb.gtk3.webview
gb.gui
gb.gui.opengl
gb.gui.qt
gb.gui.qt.ext
gb.gui.qt.opengl
gb.gui.qt.webkit
gb.gui.trayicon
gb.gui.webview
gb.hash
gb.highlight
gb.image
gb.image.effect
gb.image.imlib
gb.image.io
gb.inotify
gb.jit
gb.libxml
gb.logging
gb.map
gb.markdown
gb.media
gb.media.form
gb.memcached
gb.mime
gb.mysql
gb.ncurses
gb.net
gb.net.curl
gb.net.pop3
gb.net.smtp
gb.openal
gb.opengl
gb.opengl.glsl
gb.opengl.glu
gb.opengl.sge
gb.openssl
gb.option
gb.pcre
gb.pdf
gb.poppler
gb.qt4
.combobox.item
.container.children
.Menu.Children
.TabStripContainer
.TabStripContainer.Children
.TextArea.Selection
.TextBox.Selection
.Window.Controls
.Window.Menus
_ColumnView_Columns
_ComboBox_Item
_ComboBox_Selection
_Draw_Clip
_Draw_Style
_GridView_Cell
_GridView_Column
_GridView_Columns
_GridView_Data
_GridView_Row
_GridView_Rows
_Gui
_IconView_Item
_ListBox_Item
_split
_TreeView
_TreeView_Item
Action
Align
Animation
Application
Arrange
Border
Button
CheckBox
Clipboard
Color
ColumnView
ComboBox
Container
ContainerChildren
Control
Cursor
Desktop
Dialog
Direction
Drag
Draw
DrawingArea
embedder
Fill
Font
Fonts
Form
Frame
GridView
HBox
HPanel
HSplit
IconView
Image
Key
Label
Line
ListBox
ListView
Menu
Message
_call
Delete
Error
Info
Question
Style
Title
Warning
Mouse
MovieBox
Paint
PaintBrush
PaintExtents
PaintMatrix
Panel
Picture
PictureBox
Point
Pointer
PointF
Printer
ProgressBar
RadioButton
Rect
RectF
Screen
Screens
Scroll
ScrollArea
ScrollBar
ScrollView
Select
Separator
Slider
SpinBox
Splitter
Spring
Style
SvgImage
TabStrip
TextArea
TextBox
TextLabel
ToggleButton
ToolButton
trayicon
trayicons
TreeView
UserContainer
UserControl
VBox
VPanel
VSplit
Watcher
Window
Windows
gb.qt4.ext
gb.qt4.opengl
gb.qt4.webkit
gb.qt4.webview
gb.qt5
gb.qt5.ext
gb.qt5.opengl
gb.qt5.webkit
gb.qt5.webview
gb.qt6
gb.qt6.ext
gb.qt6.opengl
gb.qt6.webview
gb.report
gb.report2
gb.scanner
gb.sdl
gb.sdl.sound
gb.sdl2
gb.sdl2.audio
gb.settings
gb.signal
gb.term
gb.test
gb.util
gb.util.web
gb.v4l
gb.vb
gb.web
gb.web.feed
gb.web.form
gb.web.gui
gb.xml
gb.xml.html
gb.xml.rpc
gb.xml.xslt
Controls pictures
Deprecated components
Developer Documentation
Development Environment Documentation
Documents
Error Messages
Gambas Playground
How To's
Language Index
Language Overviews
Last Changes
Lexicon
README
Search the wiki
To Do
Topics
Tutorials
Wiki License
Wiki Manual

Message (gb.qt4)

This class is used for displaying message boxes.

This class is static.

This class can be used as a static function.

Static properties
ColoredButtons   Return or set if colored buttons are used.
DefaultButton   Return or set if the first button of the message box is the default one.
Style   There is currently only one option: "flat".
Title   Returns or sets the title of the next message box.

Static methods
Delete   Displays a deletion message box, with up to three buttons.
Error   Displays a error message box, with up to three buttons.
Info   Displays a information message box, with one button.
Question   Displays a question message box, with up to three buttons.
Warning   Displays a warning message box, with up to three buttons.

Message boxes come in the following flavors: All message functions show a different image to highlight the message type. The image above shows Message.Warning() and its warning image. Using Message() is the same as using Message.Info().

All message functions apart from Message() and Message.Info() can have up to three buttons.

The last button is always assumed to be the cancel and the default button.

This is the same button that is triggered when you close the message box with the ESCAPE key.

In other words, the default action should always do nothing.

Message boxes are modal, i.e. the program is paused until one button is clicked.

When the message box is closed, the index of the clicked button is returned : 1 for the first button, 2 for the second button, 3 for the third one.

The message text is interpreted as Rich text.

Among the things you need to keep in mind are:

  • You can add emphasis/markup to your text by the usual tags:

    Message("(p And Not p) is <b>false</b>")
    

  • Line breaks can be standard linefeed "\n" or HTML-like:

    Message("Line<br>break")
    Message("Line\nbreak")
    Message("Line" & gb.Lf & "break")
    

  • Characters with special meaning in HTML need to be quoted. The following line:

    Message("(2 < 3) is true")
    

    may result in the "< 3..." part being swallowed away as invalid HTML (seen with gb.gtk and gb.gtk3), but

    Message("(2 &lt; 3) is true")
    

    will work everywhere.

  • If you want to show plain text and not use HTML markups you can use the Html$ function to convert your message to HTML viewable format.

    For example:

    Message(Html$("(2 < 3) <this line shows as you see it> \nand <b>this line is not bold but displays the markup</b>"))
    

Examples

PRINT Message("Program v0.3<br>Version of 2006-03-28")
PRINT Message.Info("Program v0.3<br>Version of 2006-03-28", "Fine")
PRINT Message.Warning("Your changes will be lost", "Save", "Ignore", "Cancel")