Shows a dialog with a bar indicating the current progress of a certain thing.
See Also: UpdateProgressBar, HideProgressBar
Example - Progress Bar
function OnStart()
{
app.ShowProgressBar( "Loading..." );
for( prog = 0; prog < 100; prog++ )
app.UpdateProgressBar( prog );
app.HideProgressBar();
}