DIAdem Help

Object: UpdateSource <Navigator>

  • Updated2024-09-12
  • 1 minute(s) read

Object: UpdateSource <Navigator>

Use the UpdateSource object to access general information about DataPlugins on the NI DataPlugin website or on a DataFinder instance.

The following example displays the date of the last DataPlugin update and the number of DataPlugins available in the update source:

VBScriptPython

 

Dim oMyDataUpdateSource
Set oMyDataUpdateSource = Navigator.Settings.CreateUpdateSource()
Call MsgBoxDisp("Last update: " & oMyDataUpdateSource.LastUpdate & VBCrLf & _
"Number of DataPlugins: " & oMyDataUpdateSource.UpdateData.Count)