Hi
Based on my further research, there is no direct way to do this. But, we
can create an HTML page that contains 2 Outlook View Controls and then set
it as the "Folder Home Page" for the Calendar folder.
Paste the following into an HTML, save it to your hard drive, view the
properties for your Calendar folder, on the "Home Page" tab, select the
HTML file. Click "Apply". If you get a dialog about not being able to set
offline settings, click OK, then use the X at the top right to close the
dialog.
=======================================================
<html>
<head>
</head>
<body>
<OBJECT
classid=CLSID:0006F063-0000-0000-C000-000000000046
id=ViewCtl1
width="60%"
height="100%">
<param name="Folder" value="Calendar">
</OBJECT>
<OBJECT
classid=CLSID:0006F063-0000-0000-C000-000000000046
id=ViewCtl2
width="40%"
height="100%">
<param name="Folder" value="Calendar">
</OBJECT>
<script language=VBScript>
Sub Window_OnLoad()
ViewCtl1.View = "Day/Week/Month"
ViewCtl2.View = "By Category"
End Sub
</script>
</body>
</html>
Best regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! -
www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.