View Single Post
  #3  
Old October 9th 07, 07:36 AM posted to microsoft.public.outlook.program_forms
Alex[_3_]
external usenet poster
 
Posts: 2
Default Outlook 2003 - Reformat email content in reading Mode

Hi Adrei,

I appreciate your gesture for introducing me to a very powerful, robust and flexible tools which are indepensible for any ambitious developers/programmers.

However, since my requirement was a limited one, I managed to accomplish with the following concept:

In the outlook Project1 (ThisOutlookSession)-
---------------------------------------------
Public WithEvents olInspectors As Outlook.Inspectors

Private Sub Application_Startup()
Set olInspectors = Application.Inspectors
End Sub

Private Sub olInspectors_NewInspector(ByVal Inspector As Outlook.Inspector)
'Subroutine calls to work with the Outlook mail message body
ComposeMessageForPhoneNumber
End Sub
---------------------------------------------

Thanks once again!
Ads