Example #1
0
 /// <summary>
 /// Called when the Progress track operation is over
 /// </summary>
 private void EndProgressForm()
 {
     if (progressIndicator != null)
     {
         progressIndicator.CloseProgressDialog();
         progressIndicator.Dispose();
         progressIndicator = null;
     }
 }
Example #2
0
 /// <summary>
 /// Starts the Progress of a tracked item.
 /// </summary>
 private void StartProgressForm()
 {
     EndProgressForm();
     progressIndicator = new ShowProgressHelper();
     progressIndicator.ShowOperation(null, "Please Wait, we're doing things", ShowProgressHelper.TimeOutConfig.TimeoutIn120Seconds);
 }