|
ED
|
not used
|
RT
|
avaliable
|
This method deletes the object Online-Variable Objekt with the index or key strName from the collection. On deleting the object the variable is logged off the Runtime system and deleted from the collection.
'delete all OnlineVariables Sub DeleteOLVs() Dim i As Integer Dim obOLV As OnlineVariable Dim strOLVName As String 'enum all OnlineVarialbes and delete it... For i = 0 To thisProject.OnlineVariables.Count - 1 Set obOLV = thisProject.OnlineVariables.Item(i) strOLVName = obOLV.Name Set obOLV = Nothing thisProject.OnlineVariables.DeleteOnlineVariables (strOLVName) Next i End Sub