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.
| ||||||||||||||||
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 | ||||||||||||||||