IWaitingBar.StartProcess (String, Boolean, Int32) Method
Parameters
- description
- string
The description of the active waiting bar to be set.
- stopRunningProcess
- bool
Indicates, whether to stop the previous process, if any, before the new process is started.
- timeBeforeShowing
- int
The time delay (in milliseconds) before the waiting bar is displayed. If the StopProcess or StopAllProcesses method is called at this time, the waiting bar is not displayed.
This method sets the default caption similar to "Please Wait". If you want to have a different caption,
call SetCaption afterward.
// Get the waiting bar used in QDV. var waitBar = context.QdvManager.WaitingBar; try { // Enumerate all global variables and display the progress. if (waitBar != null) { waitBar.StartProcess(""); waitBar.SetCaption("Enumerating global variables..."); } var globalVars = es.CurrentVersion.GlobalVariables; foreach (var variable in globalVars.GetGlobalVariableNames()) { // Display the progress. string progressText = variable; progressText += " = "; progressText += Convert.ToString(globalVars.GetVariableValue(variable)); if (waitBar != null) { waitBar.SetDescription(progressText); } // Simulate a long lasting operation. System.Threading.Thread.Sleep(100); } } finally { // Close the progress bar. if (waitBar != null) { waitBar.StopAllProcesses(); } }
This language is not supported or no code example is available.
The following example demonstrates how to slowly enumerate all global variables and display the progress.
Available since QDV 7.23.1050.