SQL Object
 
Syntax
 
SQL.ApplicationReady
 
Description
Returns TRUE when TRADIUM is fully booted up. If TRADIUM is still in the process of starting internal processes, returns FALSE.
 
This function is used in macros used directly at TRADIUM startup.
See Also
 
Example
Sub Main()
    Do While SQL.ApplicationReady = False
        DoEvents
    Loop
End Sub