Retrieving Message data and sending it to a text b (wodPop3)
Hi,
I use a ListView control in Visual Basic 6 to display the subject, from information of recieved messages. How would I populate text boxes with the data associated with the item I have selected in the listview say item1 so the three textboxes would display item1.from, item1.subject and item1.body?
This is how I did it when I only had one message to deal with when I was using the MAPI Controls.
Private Sub Form_Load()
'Get information from the message so it can be read.
txtFrom.Text = frmMain.MAPIMessages1.MsgOrigAddress
txtSubject.Text = frmMain.MAPIMessages1.MsgSubject
txtBody.Text = frmMain.MAPIMessages1.MsgNoteText
End Sub
Thanks,
Nightwalker