Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook Mailitem

Status
Not open for further replies.

Cloonalt

Programmer
Joined
Jan 4, 2003
Messages
354
Location
US
I'm using

Dim myApp As New Outlook.Application
Dim myItem As Outlook.MailItem
Set myItem = myApp.CreateItem(olMailItem)

with myItem

blah, blah

.send

Works fine but I really want to display the e-mail message first. Can seem to find it. Any help appreciated.

Thanks
 
Replace this:
.send
By this:
.Display

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Oh boy, I thought I woke up this morning, but I guess not.

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top