Syntax
| SQL.DisplayPercentage Value[, Caption]
| ||||||
---|---|---|---|---|---|---|---|
Description
| Displays a percentage bar at the bottom of the status line of the main Tradium screen, with optional text attached.
| ||||||
See Also
| |||||||
Example
| Sub Main() Dim X As Long For X = 0 To 100 SQL.DisplayPercentage X, "Test" Wait 3 ' sekonden Next X SQL.DisplayPercentage -1 ' Clear percentage bar End Sub | ||||||