• coding POST to Public folder (O2k, O03, Outlook, Word )

    Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » coding POST to Public folder (O2k, O03, Outlook, Word )

    Author
    Topic
    #411604

    Hi folks

    Controlling a Post operation from MS Word vba.

    I am trying to write VBA that POSTs activedocument as attachment to a nominated public folder.
    The resulting post turns up in the in-box.
    I can send successfully to the correct public folder if I specify
    .to = “publicfoldername@domain name”

    It seems that modifying the send routine with substitituions for item type to olPostItem etc is insufficient, and using .post instead of .send is insufficient.

    Do I need to somehow specify a defaultFolder in my code ..

    Thanks in anticipation..
    Geof

    Viewing 0 reply threads
    Author
    Replies
    • #893439

      It would help to see your code where you create the Outlook Post Item. A document can’t be attached to a folder, but can be attached to a Post Item, so I assume that’s what you mean. I haven’t done this (I don’t have permissions to post to any public folders), but I assume you’d need to set the target folder something like:

      Set objFldr = Application.GetNamespace(“MAPI”).GetDefaultFolder(olPublicFoldersAllPublicFolders)
      Set objFldr = objFldr.Folders(“SubFolder”).Folders(“TargetFolder”)

      Then see if you can either make this folder the Current Folder and use the Post Method

      ActiveExplorer.SelectFolder objFldr
      myPostItem.Post

      or use the Items.Add Method of the Folder

      objFldr.Items.Add(myPostItem)

      • #893485

        Hello John
        Thanks for your ktime and help.
        Your suggestion helps in that I can now select the correct folder ..
        The resultant post however still appears in the inbox.

        I still have an issue if Outlook is not running but here is the code at present.
        The code I found on a m/soft site
        ———————–
        Sub PostDocumentAsAttachment()

        Dim bStarted As Boolean
        Dim oOutlookApp As New Outlook.Application
        Dim oItem As Outlook.PostItem
        Dim oFldr
        ‘Set oOutlookApp = GetObject(, “Outlook.Application”) —- I get myself in a knot here probably related to bStarted variable and quitting further down. A side issue. ————-
        Set oItem = oOutlookApp.CreateItem(olPostItem)

        Set oFldr = oOutlookApp.GetNamespace(“MAPI”).GetDefaultFolder(olPublicFoldersAllPublicFolders) ‘ John
        Set oFldr = oFldr.Folders(“Shared Resources”)
        ActiveExplorer.SelectFolder oFldr

        On Error Resume Next

        If Len(ActiveDocument.Path) = 0 Then
        MsgBox “Document needs to be saved first”
        Exit Sub
        End If

        If Err 0 Then
        Set oOutlookApp = CreateObject(“Outlook.Application”)
        bStarted = True
        End If

        With oItem
        .Subject = ActiveDocument.Name
        .Attachments.Add Source:=ActiveDocument.FullName, DisplayName:=”Document as attachment”
        .Post
        End With
        ‘oFldr.Items.Add (oItem) – as a suggested alternative

        If bStarted Then
        oOutlookApp.Quit
        End If

        Set oItem = Nothing
        Set oOutlookApp = Nothing

        End Sub
        —————————–

        Cheers and thanks again.

        Geof

      • #893486

        Hello John
        Thanks for your ktime and help.
        Your suggestion helps in that I can now select the correct folder ..
        The resultant post however still appears in the inbox.

        I still have an issue if Outlook is not running but here is the code at present.
        The code I found on a m/soft site
        ———————–
        Sub PostDocumentAsAttachment()

        Dim bStarted As Boolean
        Dim oOutlookApp As New Outlook.Application
        Dim oItem As Outlook.PostItem
        Dim oFldr
        ‘Set oOutlookApp = GetObject(, “Outlook.Application”) —- I get myself in a knot here probably related to bStarted variable and quitting further down. A side issue. ————-
        Set oItem = oOutlookApp.CreateItem(olPostItem)

        Set oFldr = oOutlookApp.GetNamespace(“MAPI”).GetDefaultFolder(olPublicFoldersAllPublicFolders) ‘ John
        Set oFldr = oFldr.Folders(“Shared Resources”)
        ActiveExplorer.SelectFolder oFldr

        On Error Resume Next

        If Len(ActiveDocument.Path) = 0 Then
        MsgBox “Document needs to be saved first”
        Exit Sub
        End If

        If Err 0 Then
        Set oOutlookApp = CreateObject(“Outlook.Application”)
        bStarted = True
        End If

        With oItem
        .Subject = ActiveDocument.Name
        .Attachments.Add Source:=ActiveDocument.FullName, DisplayName:=”Document as attachment”
        .Post
        End With
        ‘oFldr.Items.Add (oItem) – as a suggested alternative

        If bStarted Then
        oOutlookApp.Quit
        End If

        Set oItem = Nothing
        Set oOutlookApp = Nothing

        End Sub
        —————————–

        Cheers and thanks again.

        Geof

      • #893517

        Hello again John
        You put me on the right track ..

        here is my solution
        ——-
        Sub PostDocumentAsAttachment()

        Dim bStarted As Boolean
        Dim oOutlookApp As New Outlook.Application
        Dim oFldrItems
        Dim oItem As Outlook.PostItem
        Dim oFldr

        On Error Resume Next

        If Len(ActiveDocument.Path) = 0 Then
        MsgBox “Document needs to be saved first”
        Exit Sub
        End If

        If Err 0 Then
        Set oOutlookApp = CreateObject(“Outlook.Application”)
        bStarted = True
        End If

        Set oOutlookApp = GetObject(, “Outlook.Application”)
        Set oFldr = oOutlookApp.GetNamespace(“MAPI”).GetDefaultFolder(olPublicFoldersAllPublicFolders)
        Set oFldr = oFldr.Folders(“Shared Resources”)
        ActiveExplorer.SelectFolder oFldr

        Set oFldrItems = oFldr.Items
        Set oItem = oOutlookApp.CreateItem(olPostItem)

        With oFldrItems.Add
        .Subject = ActiveDocument.Name
        .Attachments.Add Source:=ActiveDocument.FullName, DisplayName:=”Document as attachment”
        .Post
        End With

        If bStarted Then
        oOutlookApp.Quit
        End If
        Set oFldr = Nothing
        Set oFldrItems = Nothing
        Set oItem = Nothing
        Set oOutlookApp = Nothing

        End Sub
        ———-

        Cheers and thanks again

        Geof

        • #893885

          If you wish to, you should be able to

          Dim oFldr as Outlook.MAPIFolder

        • #893886

          If you wish to, you should be able to

          Dim oFldr as Outlook.MAPIFolder

      • #893518

        Hello again John
        You put me on the right track ..

        here is my solution
        ——-
        Sub PostDocumentAsAttachment()

        Dim bStarted As Boolean
        Dim oOutlookApp As New Outlook.Application
        Dim oFldrItems
        Dim oItem As Outlook.PostItem
        Dim oFldr

        On Error Resume Next

        If Len(ActiveDocument.Path) = 0 Then
        MsgBox “Document needs to be saved first”
        Exit Sub
        End If

        If Err 0 Then
        Set oOutlookApp = CreateObject(“Outlook.Application”)
        bStarted = True
        End If

        Set oOutlookApp = GetObject(, “Outlook.Application”)
        Set oFldr = oOutlookApp.GetNamespace(“MAPI”).GetDefaultFolder(olPublicFoldersAllPublicFolders)
        Set oFldr = oFldr.Folders(“Shared Resources”)
        ActiveExplorer.SelectFolder oFldr

        Set oFldrItems = oFldr.Items
        Set oItem = oOutlookApp.CreateItem(olPostItem)

        With oFldrItems.Add
        .Subject = ActiveDocument.Name
        .Attachments.Add Source:=ActiveDocument.FullName, DisplayName:=”Document as attachment”
        .Post
        End With

        If bStarted Then
        oOutlookApp.Quit
        End If
        Set oFldr = Nothing
        Set oFldrItems = Nothing
        Set oItem = Nothing
        Set oOutlookApp = Nothing

        End Sub
        ———-

        Cheers and thanks again

        Geof

    Viewing 0 reply threads
    Reply To: coding POST to Public folder (O2k, O03, Outlook, Word )

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: