A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Internet Format of the messages



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old September 7th 06, 10:48 PM posted to microsoft.public.office.developer.outlook.vba,microsoft.public.outlook.program_vba
Nicolas Macarez
external usenet poster
 
Posts: 37
Default Internet Format of the messages

Hi!

Something went wrong (I don't know how) on my Microsoft Outlook 2003 (fully
patched with SP2 and fixes).

In my personal Address Books (3600 addresses), some contacts are wrong with
the Internet Format which is "Send using Outlook Rich Text Format" and
should be "Let Outlook decide the best sending format".

Fortunately, not all the contacts are wrong this way.

Of course I can search and change any contact manually but since there are
more than three thousand of them, I am looking for a script or some advice
to modifiy all the contact in one shot, in a programmatic way.

Any idea or place to search is welcomed.

Nicolas


Ads
  #2  
Old September 8th 06, 06:52 AM posted to microsoft.public.office.developer.outlook.vba,microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Internet Format of the messages

Am Thu, 7 Sep 2006 22:48:00 +0200 schrieb Nicolas Macarez:

Nicolas, you need to loop through all contacts and edit each of the three
EMail*EntryIDs.

The 23rd byte of the EntryID indicates the format:

- 01: Let OL decide...
- 07: Plain text
- 00: RTF

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Hi!

Something went wrong (I don't know how) on my Microsoft Outlook 2003

(fully
patched with SP2 and fixes).

In my personal Address Books (3600 addresses), some contacts are wrong

with
the Internet Format which is "Send using Outlook Rich Text Format" and
should be "Let Outlook decide the best sending format".

Fortunately, not all the contacts are wrong this way.

Of course I can search and change any contact manually but since there are
more than three thousand of them, I am looking for a script or some advice
to modifiy all the contact in one shot, in a programmatic way.

Any idea or place to search is welcomed.

Nicolas

  #3  
Old September 8th 06, 09:11 AM posted to microsoft.public.outlook.program_vba
Nicolas Macarez
external usenet poster
 
Posts: 37
Default Internet Format of the messages

Thanks Michael
Nice piece of advice.
In fact I'm not a VBA developer (OK, I know a bit of programming, but not to
the point of writing a program from scratch).
I am more an infrastructure guy (Windows Server, Exchange Server).
If by chance, you have any code for that loop, I would be great. I'll be
able to modify it to suit my needs.
Regards
Nicolas


"Michael Bauer [MVP - Outlook]" wrote in message
...
Am Thu, 7 Sep 2006 22:48:00 +0200 schrieb Nicolas Macarez:

Nicolas, you need to loop through all contacts and edit each of the three
EMail*EntryIDs.

The 23rd byte of the EntryID indicates the format:

- 01: Let OL decide...
- 07: Plain text
- 00: RTF

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Hi!

Something went wrong (I don't know how) on my Microsoft Outlook 2003

(fully
patched with SP2 and fixes).

In my personal Address Books (3600 addresses), some contacts are wrong

with
the Internet Format which is "Send using Outlook Rich Text Format" and
should be "Let Outlook decide the best sending format".

Fortunately, not all the contacts are wrong this way.

Of course I can search and change any contact manually but since there

are
more than three thousand of them, I am looking for a script or some

advice
to modifiy all the contact in one shot, in a programmatic way.

Any idea or place to search is welcomed.

Nicolas



  #4  
Old September 11th 06, 08:57 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Internet Format of the messages

Am Fri, 8 Sep 2006 09:11:13 +0200 schrieb Nicolas Macarez:

Nicolas, the loop in this case is the smallest part :-)

I´ve created a sample on my sites:
http://www.vboffice.net/sample.html?...2&cmd=showitem

Here´s a short explanation in English: You cannot edit the settings via the
Outlook object model, instead the sample uses Redemption from
www.dimastr.com.

The sample loops through the standard contact folder and edits only the
first address of each contact, but the IDs for Email2EntryID and
Email3EntryID are there already, so you could easily extend the code
yourself.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Thanks Michael
Nice piece of advice.
In fact I'm not a VBA developer (OK, I know a bit of programming, but not

to
the point of writing a program from scratch).
I am more an infrastructure guy (Windows Server, Exchange Server).
If by chance, you have any code for that loop, I would be great. I'll be
able to modify it to suit my needs.
Regards
Nicolas


"Michael Bauer [MVP - Outlook]" wrote in message
...
Am Thu, 7 Sep 2006 22:48:00 +0200 schrieb Nicolas Macarez:

Nicolas, you need to loop through all contacts and edit each of the three
EMail*EntryIDs.

The 23rd byte of the EntryID indicates the format:

- 01: Let OL decide...
- 07: Plain text
- 00: RTF

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Hi!

Something went wrong (I don't know how) on my Microsoft Outlook 2003

(fully
patched with SP2 and fixes).

In my personal Address Books (3600 addresses), some contacts are wrong

with
the Internet Format which is "Send using Outlook Rich Text Format" and
should be "Let Outlook decide the best sending format".

Fortunately, not all the contacts are wrong this way.

Of course I can search and change any contact manually but since there

are
more than three thousand of them, I am looking for a script or some

advice
to modifiy all the contact in one shot, in a programmatic way.

Any idea or place to search is welcomed.

Nicolas

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to permanently change the text size for HTML format messages Cliff Wang Outlook - General Queries 1 July 7th 06 03:45 PM
Outlook 2003 'internet format' puzzler Bob H. Outlook - General Queries 1 July 1st 06 04:04 PM
How to change CONTACTS format on outlook 2003 to previous format Changing format of all contact records Outlook - Using Contacts 3 March 15th 06 11:51 PM
the "When sending meeting requests over the Internet, use iCalendar format" option unchecked and greyed-out eric z Outlook - Calandaring 5 February 23rd 06 09:55 PM
I need to save a contact in SMTP format not exchange format. JAX Outlook - Using Contacts 0 February 15th 06 02:51 PM


All times are GMT +1. The time now is 09:02 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.