Umm i don't quite understand what is it that you want...but i think you want to get text from an e-mail client and save it to a text file. If so then there are two ways...if the e-mail client is made by you and it on yout form then simply open a text for append and write the text1.text to it.
Code:
Open "C:\email.txt" For Append As #1
Print #1, Text1.Text
Close #1
But if the e-mail client is like OE (outlook express) then you would have to sendkeys which will copy and the text from the boc in the client and paste in into textbox on the form or store the copied text as a string and write the string contents to the file.
Code:
Dim string As String
string = Text1.Text
Open "C:\email.txt" For Append As #1
Print #1, string
Close #1
Hope that helps,
D!m