vote up 0 vote down star
1

Hi.

I use a macro in outlook 2003 to move selected emails to a specific folder. The moving works, but unfortunately the received date is overwritten to the current time. Any idea on how to prevent this.

I use this code:

Sub verschiebenInOrdner()

On Error Resume Next

    Dim objFolder As Outlook.MAPIFolder, objInbox As Outlook.MAPIFolder
    Dim objNS As Outlook.NameSpace, objItem As Outlook.MailItem

    Set objNS = Application.GetNamespace("MAPI")
    Set objInbox = objNS.GetDefaultFolder(olFolderInbox)

    Set objFolder = objNS.Folders.Item("2009").Folders.Item("In")

    If objFolder Is Nothing Then
        MsgBox "This folder doesn't exist!", vbOKOnly + vbExclamation, "INVALID FOLDER"
    End If

    If Application.ActiveExplorer.Selection.Count = 0 Then
        Exit Sub
    End If

    For Each objItem In Application.ActiveExplorer.Selection
        If objFolder.DefaultItemType = olMailItem Then
            If objItem.Class = olMail Then
                objItem.UnRead = False
                objItem.Move objFolder
            End If
        End If
    Next

    Set objItem = Nothing
    Set objFolder = Nothing
    Set objInbox = Nothing
    Set objNS = Nothing
End Sub

Thanks to the help of 76mel I came up with this:

    Sub verschiebenInArchiv()

Dim Session As Redemption.rDOSession
Dim objFolder As Redemption.RDOFolder
Dim objItem As Outlook.MailItem
Dim objItem2 As Redemption.RDOMail

Set Session = CreateObject("Redemption.RDOSession")

Session.Logon

Set objFolder = Session.Stores.Item("2009").IPMRootFolder.Folders("In")

If Application.ActiveExplorer.Selection.Count = 0 Then
    Exit Sub
End If

For Each objItem In Application.ActiveExplorer.Selection
    Set objItem2 = Session.GetMessageFromID(objItem.EntryID, Session.Stores.DefaultStore.EntryID)
    objItem2.Move objFolder
Next

End Sub

This works when I am in my Inbox. Does anybody know how I can set the Store-ID in GetMessageFromID to the ID of the store in which my selection is made?

Edit: Thanks 76mel, I am using objItem.Parent.StoreID now to get the current StoreID.

flag
I doesn't change the date for me using Outlook 2003 (11.8118.8132) SP2 – dkusleika Jun 23 at 19:29
As others have stated, this shouldn't change the date. Maybe your actual code is slightly different from what you quoted here? – Oliver Giesen Jun 24 at 6:24
are you running any other code that would change the date ? – 76mel Jun 24 at 8:07
that is the actual code. searching the internet some people report this problem while others report that they don't have this problem. Outlook 2003 SP3 here. – computhomas Jun 24 at 8:10
@76mel: no that is the only code i use in outlook – computhomas Jun 24 at 8:32
show 1 more comment

3 Answers

vote up 0 vote down check

Your right there has been a few reports around the net saying it doesn’t work.

It would seem that VB6 doesn’t bubble up an error :( . I think that the way to tackle this would be to use CDO or the defacto 3rd party lib "Redemption". To do the actual move in the background.

M

Update: Try something like this .. I dont have VB on may machine so haven't tested it But you will get the idea.

Sub verschiebenInOrdner()

On Error Resume Next


    Dim objNS As Outlook.NameSpace
    Dim objRDOSession As Redemption.RDOSession
    Dim objRDOFolder As Redemption.RDOFolder
    Dim objItem As Outlook.MailItem
    Dim objRDOMail As Redemption.RDOMail


    Set objNS = Application.GetNamespace("MAPI")
    Set objRDOSession = CreateObject("Redemption.RDOSession")
    objRDOSession.MAPIOBJECT = objNS.MAPIOBJECT  'or Logon

    Set objRDOFolder = Session.GetFolderFromPath("<YOUR PATH>")
    ' do your validation for folder and selection



    For Each objItem In Application.ActiveExplorer.Selection
        If objFolder.DefaultItemType = olMailItem Then
            If objItem.Class = olMail Then
              Set objRDOMail = objRDOSession.GetMessageFromID(objItem.EntryID)
              objRDOMail.UnRead = False
              objRDOMail.Move objRDOFolder

            End If
        End If
    Next



    Set objItem = Nothing
    Set objRDOMail = Nothing
    Set objRDOFolder = Nothing
    Set objRDOSession = Nothing
    Set objNS = Nothing
End Sub
link|flag
I tried copying the mail to a Redemption.SafeMailItem and move this afterwards, but it still overwrites the ReceivedTime. – computhomas Jun 25 at 9:08
Ok Safemail work a the same level as the OOM so probably experience the same problem. I would use RDO if you are using Redemption. Create a RDOSession >Logon >grab your folder using GetFolderFromPath and the use the entryids from you selection to get RDOMail via the session using GetMessageFromID. Then do you move on the RDOMail. – 76mel Jun 25 at 14:43
Thank you very much, just one little detail. Please see my edit in the question. – computhomas Jun 25 at 16:07
vote up 0 vote down

It doesn't change the date for me in Outlook 2003 either. If it is a continuing problem for you I would try to get the date of the item and overwrite it after transferring it.

link|flag
the date is read only and can't be set by code – computhomas Jun 24 at 8:07
vote up 0 vote down

Hi i have the same problem here with Outlook 2003 SP3

after Moving the mail with the .move command the received date in the overview will get the new date, but if you are opening the mail itself you see the correct date and time.

are there any news how to solve this issue ?

link|flag
Hi FeZ, see the update in the question and the answer by 76mel. – computhomas Jul 6 at 14:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.