Opening a Public Outlook Calendar Folder using Javascript

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hikumar
    New Member
    • Feb 2008
    • 2

    Opening a Public Outlook Calendar Folder using Javascript

    Hi Guys,

    I want a javascript function which shows Public Shared Calendar(opens a window) when I click a link from the webpage. Please help me.

    Ex. /Public Folders/All Public Folders/Photography

    Thanks in Advance.

    I have following VBScript working fine on PC but, not on MAC that is why I am looking for Javascript Please help me.

    ************
    [CODE=vb]<script language="vbscr ipt">
    sub RunOutlook()
    Dim olApp
    Set olApp = CreateObject("O utlook.Applicat ion")
    Dim mb
    Set mb = olApp.GetNamesp ace("MAPI").Fol ders("Public Folders").Folde rs("All Public Folders").Folde rs("Photography ")
    mb.Display
    olApp.ActiveExp lorer.CurrentVi ew = "Day/Week/Month"
    end sub
    </script>[/CODE]
    *************** *****
    Last edited by acoder; Feb 15 '08, 08:56 AM. Reason: Added code tags
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    I'm afraid it's not possible with JavaScript. You can't get this working on a Mac.

    Comment

    Working...