H
Haevlyn
Hello
I'm trying to hyperlink to a shared private calendar but am hitting some
issues.
If I click on the "outlook:\\GUID" link I receive an error that the folder
could not be located. "Unable to display the folder. Microsoft Office Outlook
could not access the specified folder location."
However, if I first open the calendar by selecting "File ... Open other
users folder" enter in the name and select calendar from the list the
calendar opens up. I can then click on the "outlook:\\GUID" link and it will
open up the calendar without any problem at all.
Is there any way to open the calendar (hyperlinking) without first having to
manually do so? I've tried several things including some VBscript from a
Microsoft Community Representative that didn't work.
The code he posted was:
<%@ Page Language="vb" AutoEventWireup="false" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET
7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<script language="vbscript">
sub RunOutlook()
Dim olApp
Set olApp = CreateObject("Outlook.Application")
Dim mb
Set mb = olApp.GetNamespace("MAPI").Folders("Personal
Folders").Folders("Calendar")
mb.Display
olApp.ActiveExplorer.CurrentView = "Day/Week/Month"
end sub
</script>
<a onclick="RunOutlook" href="#">Open Outlook</a>
<form id="Form1" method="post" runat="server">
<FONT face="ËÎÌå"></FONT>
</form>
</body>
</HTML>
Any help would be appreciated.
I'm trying to hyperlink to a shared private calendar but am hitting some
issues.
If I click on the "outlook:\\GUID" link I receive an error that the folder
could not be located. "Unable to display the folder. Microsoft Office Outlook
could not access the specified folder location."
However, if I first open the calendar by selecting "File ... Open other
users folder" enter in the name and select calendar from the list the
calendar opens up. I can then click on the "outlook:\\GUID" link and it will
open up the calendar without any problem at all.
Is there any way to open the calendar (hyperlinking) without first having to
manually do so? I've tried several things including some VBscript from a
Microsoft Community Representative that didn't work.
The code he posted was:
<%@ Page Language="vb" AutoEventWireup="false" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET
7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<script language="vbscript">
sub RunOutlook()
Dim olApp
Set olApp = CreateObject("Outlook.Application")
Dim mb
Set mb = olApp.GetNamespace("MAPI").Folders("Personal
Folders").Folders("Calendar")
mb.Display
olApp.ActiveExplorer.CurrentView = "Day/Week/Month"
end sub
</script>
<a onclick="RunOutlook" href="#">Open Outlook</a>
<form id="Form1" method="post" runat="server">
<FONT face="ËÎÌå"></FONT>
</form>
</body>
</HTML>
Any help would be appreciated.