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

macro outlook



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 1st 07, 08:00 PM posted to microsoft.public.outlook.program_vba
azerpoi[_2_]
external usenet poster
 
Posts: 1
Default macro outlook

Hi,
First of all, I have to say that I have nearly no knowledge in programming.
Secondly my mother language is French and therefore I apologize in advance
for my mistakes in english.
I use Outlook 2000.
I would like to create a macro to do the following :
- I receive several times a day messages that I have to transfer to a
colleague of mine. But before transferring, I have to make some alterations
in the orginal text, such as deleting some parts or increasing the font size
of some other parts.
Could you give me some advises in the way to write such a macro ?
Thank you in advance for any information.
Patrick

Ads
  #2  
Old November 2nd 07, 05:53 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default macro outlook



This sample demos how to trap new items:
http://www.vboffice.net/sample.html?...owitem&pub= 6

You might adapt the ItemAdd event for your needs. First, check if the new
item is one that you want to forward to your colleague, maybe check by its
Sender or Subject property.

This creates a forward for the item and stores the reference to it in a
variable:

Dim Forward as Outlook.MailItem
Set Forward=Item.Forward

The e-mail must be in HTML, so that you can change the font-size. Easiest
approach would be to use Word as maileditor. You might set that via
Tools/Options. Then Forward.GetInspector.WordEditor returns a reference to a
Word.Document object.

Add a reference to the Word library to your VBA project via
Tools/References. Then open the object brwoser (f2), switch from All
Libraries to Word and select Document in the left pane. In the rigth pane
you can see then all of its properties. Select anyone and click f1 for
getting more help for it.

In principle, you can search for text within your e-mail with the Instr
function. Just type it and press f1 for help. If the original e-mail is in
HTML already then search the text in the item's HTMLBody property else in
its Body property.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Synchronize Color Categories & Ensure that Every Item Gets Categorized:
http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6

Am Thu, 1 Nov 2007 21:00:34 +0100 schrieb azerpoi:

Hi,
First of all, I have to say that I have nearly no knowledge in

programming.
Secondly my mother language is French and therefore I apologize in advance
for my mistakes in english.
I use Outlook 2000.
I would like to create a macro to do the following :
- I receive several times a day messages that I have to transfer to a
colleague of mine. But before transferring, I have to make some

alterations
in the orginal text, such as deleting some parts or increasing the font

size
of some other parts.
Could you give me some advises in the way to write such a macro ?
Thank you in advance for any information.
Patrick

 




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
macro outlook azerpoi Outlook and VBA 0 November 1st 07 07:08 PM
Outlook Macro [email protected] Outlook and VBA 1 February 28th 07 10:58 PM
Outlook macro abends but Word macro runs successfully Jreue Outlook and VBA 0 December 13th 06 11:55 PM
Call macro stored in Excel workbook from Outlook's macro Gvaram Outlook and VBA 5 October 4th 06 06:26 AM


All times are GMT +1. The time now is 10:00 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.