method DeleteItem | |
Syntax: | Boolean = object.DeleteItem ( ) |
Description: | The TrkItem.DeleteItem method deletes the PRT Item associated with TrkItem Object. TrkItem.CommitChanges Should not be done after calling this method. Calling TrkItem.CommitChanges on the Object after calling DeleteItem may have unexpected resluts. Example: Dim iAgent As Object, iItems as Object, iItem as
Object Set iAgent = CreateObject("Tracker.TrkItemAgent") iAgent.ItemID = "M0110" iAgent.Execute iItems If iItems.Count > 0 Then Set iItem
= iItems.Item(1) If iItem.DeleteItem = True Then MsgBox
"Deleted" MsgBox
"Delete Failed" ... ... Set iItem = Nothing Set iItems = Nothing Set iAgent = Nothing |