Search results

  1. A

    ItemAdd on Imap Folder get endless loop after saving item

    Ok, i've got it fixed. A little bit complicated but "only results count" I just use a second Folder on my "normal" Inbox to do the changes, so on ItemAdd on the imap folder i only move the mail to my second folder, makes the changes and the move it back to the imap inbox Private Sub...
  2. A

    ItemAdd on Imap Folder get endless loop after saving item

    Let me ask in other words Why do i see after the edit and save of the item subject a new Mail Item with the changed subject and the "old" MailItem as deleted? I would expect that the mail is just updated in the subject. But in reality it makes a copy of the incomming mail with the changed...
  3. A

    Ms Outlook Default From

    ... or use the number of the account like SendUsingAccount = olNS.Accounts.item(2)
  4. A

    Ms Outlook Default From

    hi there use With objMailItem SendUsingAccount = olNS.Accounts.item("Your@MailAccount") ... Best, Alex
  5. A

    ItemAdd on Imap Folder get endless loop after saving item

    Hello Diane, i think the check routine could be everything like len(subject)>1 for testing You say the in your first post the ItemAdd Event is firing when an item is added/saved. So in my case i can not change and save an item.sibject without a new ItemAdd Event?
  6. A

    ItemAdd on Imap Folder get endless loop after saving item

    Hi there i have a little sub wich check and change the subject. When it save the subject the ItemAdd Event is firing again and i get an endless loop. Any ideas what is wrong? Private Sub yFld_ItemAdd(ByVal item As Object) If Left(item.Subject, 16) Like "Visit from Mail:" And...
Back
Top