new Outlook Email

jessiang

Member
Joined
Jun 6, 2006
Messages
8
Programming Experience
Beginner
can anyone help me on the Email function.
if i want to prompt out the send e-mail forms from Outlook once user click on the button,how can i do it?i have add "Microsoft Outlook" to References,
i only want the e-mail form from outlook prompt out.
Thanks
 
i have solve the solution, i need to include the coding as below(this only prompt out the Outlook Email form without auto fill in the forms):

Dim objOLApp As Outlook.Application = New Outlook.Application
Dim NewAdres As Outlook.MailItem
NewAdres = objOLApp.CreateItem(Outlook.OlItemType.olMailItem)
NewAdres.Display(True)
objOLApp = Nothing
NewAdres = Nothing
 
Back
Top