PC Review Forums Newsgroups Microsoft Outlook Microsoft Outlook Form Programming accessy outlook custom forms from the web in exchange server

Reply

accessy outlook custom forms from the web in exchange server

 
Thread Tools Rate Thread
Old 08-07-2003, 02:35 PM   #1
M Wazzan
Guest
 
Posts: n/a
Default accessy outlook custom forms from the web in exchange server


Would you please hint me if we can access custom outlook
forms from the web in exchange server so that we can
access them the same way we access the inbox in the web
interface of exchange server

thank you
  Reply With Quote
Old 08-07-2003, 10:38 PM   #2
Boris
Guest
 
Posts: n/a
Default accessy outlook custom forms from the web in exchange server

There is a very simple way of accessing your forms from
the web with Java script. Just make sure your Outlook is
running when you use this script, otherwise it will not
work. Here's the code:

<!-- Enable Stealth Mode

// Variable Definitions

var nameSpace = null;

var mailFolder = null;

var mailItem = null;

var tempDoc = null;

var outlookApp = null;

function OpenOutlookDoc(whatform)

{

try

{

outlookApp = new ActiveXObject
("Outlook.Application");

nameSpace = outlookApp.getNameSpace("MAPI");

mailFolder = nameSpace.getDefaultFolder(6);

mailItem = mailFolder.Items.add(whatform);

mailItem.Display(0)

}

catch(e)

{

// act on any error that you get

}

}

// Disable Stealth Mode -->


>-----Original Message-----
>Would you please hint me if we can access custom outlook
>forms from the web in exchange server so that we can
>access them the same way we access the inbox in the web
>interface of exchange server
>
>thank you
>.
>

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off