Outlook Active X

S

sunkers

Hi there,

I had a web part made for my company about 5 or 6 years back to integrate
Outlook. Due to the latest Office updates the web part no longer functions
as before. I was wondering where I can get it repaired. The problem seems to
be a new feature when the last email is closed , the outlook service closes
also, even though the web part is still open in a Sharepoint page. our
current sharepoint app is 2003.

So I guess the web part need to keep outlook open in the background when the
web part is active. We are using Office 2007 pro.

The object is like this

<object classid="clsid:0006F063-0000-0000-C000-000000000046"
id="ViewCtlFolder" width="100%" height="400px"
codetype="application/x-oleobject"codebase="http://activex.microsoft.com/activex/controls/office/outlctlx.CAB#ver=9,0,0,3203">
<param name="Namespace" value="MAPI">
<param name="Folder" value="Inbox">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</object>

Thanks

KS

-------------------------------------
Please copy and paste this code into notepad and save as htm file. you can
run this htm file in IE browser.
<html>
<head>
<script>
function init(){

var oViewCtrl = document.getElementById("ViewCtlFolder");

try{
oViewCtrl.Folder="Inbox";

}
catch(e) { alert(e.message); }
}
</script>
</head>
<body>
<OBJECT classid="CLSID:0006F063-0000-0000-C000-000000000046"
id="ViewCtlFolder"
width="100%"
height="430"
codebase="http://activex.microsoft.com/activex/controls/office/outlctlx.CAB#ver=9,0,0,3203">
<param name="Namespace" value="MAPI">
<param name="Folder" value="Calendar">
<param name="View" value="Day/Week/Month View With AutoPreview">
<param name="Restriction" value="">
<param name="DeferUpdate" value="0">
</OBJECT>

<input type="button" name="btnA" value="Refresh" onclick="init()">
</body>
</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top