Guest_imported
New member
- Jan 1, 1970
- 0
Greetings!
I have a need to display another peson's shared calendar on the web page via the Outlook View Control. The documentation suggests using the control's OpenSharedDefaultFolder with the person's nickname and folder ("Calendar" in my case).
I use this portion of code:
<object id="OVC" width="100%" height="100%" classid="clsid:0006F063-0000-0000-C000-000000000046" codebase=" style="width:100%; height:100%;">
<param name="DeferUpdate" value="False">
<param name="Folder" value="Calendar">
<param name="Namespace" value="MAPI">
<param name="Restriction" value="">
<param name="View" value="Day/Week/Month">
</object>
<script type="text/vbscript" language="vbscript">
OVC.Folder = "Calendar"
'this line will produce an error
OVC.OpenSharedDefaultFolder "msmallconf", 9
</script>
And, man, it doesn't work at all! Although the same operation through the Outlook itself executes smoothly.
Please, help!
I have a need to display another peson's shared calendar on the web page via the Outlook View Control. The documentation suggests using the control's OpenSharedDefaultFolder with the person's nickname and folder ("Calendar" in my case).
I use this portion of code:
<object id="OVC" width="100%" height="100%" classid="clsid:0006F063-0000-0000-C000-000000000046" codebase=" style="width:100%; height:100%;">
<param name="DeferUpdate" value="False">
<param name="Folder" value="Calendar">
<param name="Namespace" value="MAPI">
<param name="Restriction" value="">
<param name="View" value="Day/Week/Month">
</object>
<script type="text/vbscript" language="vbscript">
OVC.Folder = "Calendar"
'this line will produce an error
OVC.OpenSharedDefaultFolder "msmallconf", 9
</script>
And, man, it doesn't work at all! Although the same operation through the Outlook itself executes smoothly.
Please, help!