…… //连接到邮件服务器 MyMail.mailGetMessages() //用收件箱中的邮件填充MyMail对象 iNum=UpperBound(MyMail.MessageID[]) //获取收件箱中的邮件数目 For i=1 To iNum //读取收件箱中的每一封邮件,并将其主题添加到列表框中 MyMail.mailReadMessage(MyMail.MessageID[i],msg, mailEntireMessage!,True) tab—1.tabpage—1.plb—1.AddItem(msg.Subject,1) Next //msg为mailMessage类型的实例变量 在plb—1控件的SelectionChanged事件中加入下列代码: MyMail.mailReadMessage(MyMail.MessageID[index],msg, mailEntireMessage!,True) sle—1.Text=msg.Subject //显示当前邮件的主题 sle—2.Text=msg. Recipient[1].Address //显示发件人地址 sle—3.Text=msg.DateReceived //显示收件时间 mle—1.text=msg.NoteText //显示邮件的消息体 iAttachmentFileNum=UpperBound(msg.AttachmentFile[]) //获取当前邮件的附件数目 For i=1 To iAttachmentFileNum strAttFile= strAttFile +msg.AttachmentFile[i].PathName+″~r~n″ Next //strAttFile为String类型的实例变量 |
MessageBox(″邮件附件″, strAttFile) //显示当前邮件的附件及其在硬盘上存放的位置 |
……