Returns or sets the status text to be displayed during incrementation as a String. By default, there is no text (empty string).
dim progressbar set progressbar = XSIUIToolkit.ProgressBar progressbar.Maximum = 70 progressbar.Step = 1 progressbar.CancelEnabled = false progressbar.Visible= true for i = 1 to 60 progressbar.StatusText = "frame" & i progressbar.Increment i next |