AppendText

I am using the AppentText mthod in a PostSave event of the Memo Form…

Call source.FieldAppendText( “Body”, “Test”)

When you click Send, the text “Test” is appened on screen, but the extratext is not shown when the recpient receives the email. Also, the senders sent folder has the email without the extra text

why is this?

Subject: AppendText

The PostSave Event is execute after saving the document. So the change is made, but not saved to the document. Try to put your code in the Query Save and it will work.

Subject: RE: AppendText

Missed that - works now

thanks