Is there Change Event on Body property of Ol MailItem?

  • Thread starter ×נסטסיה
  • Start date
×

×נסטסיה

I would like to add one field to a Outlook MailItem form.
This field will simply count (In real time) the characters that are added to
body (message) property of MailItem object.

The _Change event works fine in user forms of VBA Editor:
Private Sub TextBox1_Change()
Label1.Caption = Len(TextBox1.Text)
End Sub

I try to add similar code to Script Editor of Outlook Message Form and
Change event doesn't fire :(
The PropertyChange and CustomPropertyChange are not good for my case: 1.
nother of them fire when body (message) property changes
2. they fire after property changes and not in rial time (as change event
fires)

So, if you have any idia for how can i solve the probkem , plz write.

10x
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top