SQL Object
 
Syntax
 
SQL.DisplayStatus Text[, ErrorHighLightLevel][, ShowAnimatedIcon][, ForeColor][, BackColor][, FontBold][, TooltipText]
 
Description
Displays a text at the bottom left of the status line of the main Tradium screen. Optionally, highlighting and other mark-up functions.
 
Parameter
Description
Text
Alphanumeric, for displaying text, at the position of the status text (bottom left).
ErrorHighLightLevel
Optional, specifies forecolor,backcolor and fontstyle, depending on the level (1 - 9). Level 9 equals critical error messaging.
ShowAnimatedIcon
Optional. If True, an animated icon is shown, left of the status message.
ForeColor
Optional, specifies the RGB colorcode for the font color.
BackColor
Optional, specifies rhe RGB colorcode for the background.
FontBold
Optional. If True, displays the status in bold print.
TooltipText
Optional. If specified, a tooltip will be displayed when the mouse pointer hovers above the status text.
 
See Also
Example
Sub Main()
 
    Dim strHello As String
 
    Do
        strHello = InputBox$("status:")
        SQL.DisplayStatus strHello, 6
    Loop Until Len(strHello) = 0
 
    SQL.DisplayStatus ""   ' Clears display
 
End Sub