My Calendar in SPS Home page
From: <lonskie1030@discussions.microsoft.com>
Subject: My Calendar in SPS Home page
Date: Tue, 23 Aug 2005 02:03:03 -0700
Newsgroups: microsoft.public.sharepoint.portalserver
Hi,
I just want to know if it is possible to add a "My Calendar" web part to my Sharepoint home page that whenever a user accesses the homepage, the calendar webpart changes and sets based on his/her Outlook calendar. Meaning, the content of the "My Calendar" wp varies for every user upon viewing.
I just want to know if this is possible. Please reply.
Thanks in advance.
*************************************
From: <david.nixon>
Subject: RE: My Calendar in SPS Home page
Date: Tue, 23 Aug 2005 02:35:06 -0700
Newsgroups: microsoft.public.sharepoint.portalserver
simply click on edit page and add the web part for my calendar.
If you do not use owa then embed the following code in a content editor
webpart:
<html>
<head>
</head>
<body>
<OBJECT classid=CLSID:0006F063-0000-0000-C000-000000000046
id=ViewCtlFolder
width="100%"
height="200">
<param name="Namespace" value="MAPI">
<param name="Folder" value="Calendar">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</OBJECT>
<P>
<P>
<OBJECT classid=CLSID:0006F063-0000-0000-C000-000000000046
id=ViewCtlFolder
width="100%"
height="200">
<param name="Namespace" value="MAPI">
<param name="Folder" value="Inbox">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</OBJECT>
<P>
<P>
<OBJECT classid=CLSID:0006F063-0000-0000-C000-000000000046
id=ViewCtlFolder
width="100%"
height="200">
<param name="Namespace" value="MAPI">
<param name="Folder" value="Tasks">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</OBJECT>
<P>
<P>
<OBJECT classid=CLSID:0006F063-0000-0000-C000-000000000046
id=ViewCtlFolder
width="100%"
height="200">
<param name="Namespace" value="MAPI">
<param name="Folder" value="Contacts">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</OBJECT>
</body>
</html>
*************************************
From: "Gordon"
Newsgroups: microsoft.public.sharepoint.portalserver
Subject: Re: My Calendar in SPS Home page
Date: Tue, 23 Aug 2005 11:24:21 -0400
Hi Dave, Now you have me thinking about placing a shared calendar on our portal from outlook. Can this be done using a similar code as below? or is this limited to only my calendar?
Jim
*************************************
From: <david.nixon>
Subject: Re: My Calendar in SPS Home page
Date: Tue, 23 Aug 2005 09:40:10 -0700
Newsgroups: microsoft.public.sharepoint.portalserver
yes u can implement a shared calendar with it too!