Deleting a DUOS data object

You delete a DUOS object using the collection’s Remove method. In the following example, the procedure removes the data object with the ID “ITM002” from the ItemCollection:

Dim ItemCollection As DUOSObjects

Set ItemCollection = DUOSObjectsGet("Additional Item Info")
ItemCollection.Remove("ITM002")


Documentation Feedback