Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
544 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Software ==> | Advanced VBA (28 exercises) |
Topic ==> | Passing arguments (5 exercises) |
Level ==> | Relatively easy |
Subject ==> | VBA training |
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
In Word, create a document and type in some text (your name would do fine).
Write a macro which will create a message in Outlook composed of the text in your document and send it to:
The person whose email address you pass in as an argument (the TO address); and
Optionally, the person whose email address you pass in as an optional argument (the CC address).
You may find the following excerpt of code helpful:
Dim OutlookApp As Outlook.Application
Dim OutlookMessage As Outlook.MailItem
'open Outlook in memory
Set OutlookApp = New Outlook.Application
'Create a new email message and show it
Set OutlookMessage = OutlookApp.CreateItem(olMailItem)
OutlookMessage.Display
'set subject, and set body of message to be content of document
With OutlookMessage
.Subject = "Question"
.Body = ActiveDocument.Content
End With
Note that you will need to reference the Microsoft Outlook application first.
Now write another macro which works in exactly the same way, but to which you can pass as many CC addresses as you want (including none at all) using ParamArray.
Save this document as Document which emails itself.doc, then close it down.
You can find other training resources for the subject of this exercise here:
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.