Contacts/Deleted Items

  • Thread starter Thread starter Bernd Dieterle
  • Start date Start date
B

Bernd Dieterle

Hi together,

I add and delete contacts with a VisualFoxpro application.
When I delete a contact it will be found in the folder deleted items.

Can someone tell me how to find (serach) and delete this contact also in the
folder deleted items ?

All contacts have a special id in the JobTitle-filed with witch they can be
identified.
It would also be possible to delete them by category.


With best regards
Bernd
 
A simpler approach would be to move the contact to the deleted items folder,
then delete the moved contact. If objDI is your Deleted Items folder:

Set objMovedItem = objContact.Move(objDI)
objMovedItem.Delete
 
Back
Top