This method is used to load the information about deleted PPPUs on the basis of the defined filter properties.
object.LoadDeletedInfo()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProvidersFilter interface |
Display the number of the deleted PPPUs loaded on the basis of the selected filter, their GUIDs, IDs, full names and the date they were deleted.
Dim aFilter
Dim aInfoCollection
Dim aInfo
Dim aPPPU
Dim aMessage
set aFilter = Profile.CreateProvidersFilter
set aInfoCollection = aFilter.LoadDeletedInfo
aMessage = "There are " & aInfoCollection.Count & " records:"
for each aInfo in aInfoCollection
if aInfo.ID > 0 then
set aPPPU = Profile.LoadProviderById(aInfo.ID)
aFullName = aPPPU.FullName
else
aFullName = " - "
end if
aMessage = aMessage & vbNewLine &_
aInfo.Date & vbtab & vbTab & aInfo.GUID & vbtab & aInfo.ID & vbTab & aFullName
next
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface cannot be found.