Outlook 2003 - Deleted contact folders still appear in address book

  • Follow


Hello,

I deleted manually contact folders that were created with VBA

These deleted folders still appear in the list "Show names from the : " in 
the address book

The contacts themselves still apparear in each deleted folder!

I do not understand why.  Did I miss something when I created them with VBA? 
How can I clean that list with VBA and fix the situation ?

Many thanks


 

0
Reply thomas 3/7/2010 7:23:47 PM

Do those contacts folders show up in the Folder List? Where are they now, 
under Deleted Items? If so just delete them from there.

If you delete something using the Outlook object model it gets sent to 
Deleted Items. If you want it completely deleted from there you need to find 
the items in Deleted Items and delete them from there. You can also handle 
the ItemAdd() event of the Items collection of the Deleted Items folder and 
when that fires you can do the deletions if the item being added is one you 
want to act on.

-- 
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"thomas" <nomail> wrote in message 
news:eTsKBvivKHA.3536@TK2MSFTNGP06.phx.gbl...
> Hello,
>
> I deleted manually contact folders that were created with VBA
>
> These deleted folders still appear in the list "Show names from the : " in 
> the address book
>
> The contacts themselves still apparear in each deleted folder!
>
> I do not understand why.  Did I miss something when I created them with 
> VBA? How can I clean that list with VBA and fix the situation ?
>
> Many thanks
>
>
>
> 

0
Reply Ken 3/8/2010 1:37:56 PM


In fact I first did not notice the difference bewteen "delete from my 
contacts" and "detele" when I right click on contact folder

"delete from my contacts" (I translated it from my french version, so may be 
not the exact english wording) did not really delete they and they still 
showed up in the list of folders

I then just delete them and had a confirmation message then but the deleted 
folders still appear in the list "Show names from the : " in the address 
book

I haf to go in the "E mail Accounts" settings "Directory/View or change 
existing directories or address books to delete them completely which is not 
very convenient




"Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> a �crit dans le message 
de groupe de discussion : OaOXRlsvKHA.2436@TK2MSFTNGP04.phx.gbl...
> Do those contacts folders show up in the Folder List? Where are they now, 
> under Deleted Items? If so just delete them from there.
>
> If you delete something using the Outlook object model it gets sent to 
> Deleted Items. If you want it completely deleted from there you need to 
> find the items in Deleted Items and delete them from there. You can also 
> handle the ItemAdd() event of the Items collection of the Deleted Items 
> folder and when that fires you can do the deletions if the item being 
> added is one you want to act on.
>
> -- 
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007.
> Reminder Manager, Extended Reminders, Attachment Options.
> http://www.slovaktech.com/products.htm
>
>
> "thomas" <nomail> wrote in message 
> news:eTsKBvivKHA.3536@TK2MSFTNGP06.phx.gbl...
>> Hello,
>>
>> I deleted manually contact folders that were created with VBA
>>
>> These deleted folders still appear in the list "Show names from the : " 
>> in the address book
>>
>> The contacts themselves still apparear in each deleted folder!
>>
>> I do not understand why.  Did I miss something when I created them with 
>> VBA? How can I clean that list with VBA and fix the situation ?
>>
>> Many thanks
>>
>>
>>
>>
> 
0
Reply thomas 3/8/2010 5:59:32 PM

2 Replies
334 Views

(page loaded in 0.406 seconds)

8/3/2012 4:30:36 PM


Reply: