ISDBApplication::Progress

From MediaMonkey Wiki
Jump to navigation Jump to search

CoClass SDBApplication, Interface ISDBApplication

Property Get Progress As ISDBProgress


Property description

Returns SDBProgress object. It is also initialized and shown this way. In order to further modify the progress bar, see SDBProgress properties.

Progress operation can be cancelled by a user. MediaMonkey then sets value of ISDBProgress::Terminate property to TRUE. Developers are encouraged to periodically check this value (mainly in loops) and terminate the action as soon as possible.

Example code

' Assume variable list exists
Dim Progress
Set Progress = SDB.Progress
Progress.Text = SDB.Localize("Exporting...")
Progress.MaxValue = list.Count

For i=0 to list.Count-1

  '... some code here

  Progress.Value = i+1
  If Progress.Terminate Then
    ' User cancelled
    Exit For
  End If
Next

Example: Persistent progress bar

Progress bar is shown when is instantied by the script, and is removed from window when no reference to its instance remains in memory. However, we can keep one reference to the bar inside SDB.Objects storage. This prevents the progress bar from being destroyed by garbage collector and thus it remains visible.

// Example code in JavaScript:
function create_persistent_bar() {
   var bar = SDB.Progress;
   bar.Text = 'This progress bar remains visible.';
   SDB.Objects('MyProgressBar') = bar; // keep one reference to the progress bar in the global storage
}

Removing persistent progress bar
Progress bar is removed after no variables are pointing to the object. So overwriting the reference to the progress bar inside SDB.Objects with null/Nothing causes the progress bar dissapear. However, scripting engine does perform garbage collection only from time to time, so we need to call garbage collector explicitly or wait few seconds till progress bar disappears.

// Example code in JavaScript:
function remove_persistent_bar() {
   SDB.Objects('MyProgressBar') = null; // Unset the reference to progress bar instance.
   CollectGarbage(); // This undocumented JScript function runs GC instantly and removes the progress bar.
}