IPM.Note.xxxxxxxxx path

M

Mohan

hello sir,

this the HTML tages used to open the form in browser.(i got the code from ur
reference only)

<html>
<head>
<script language="JavaScript" type="text/JavaScript">
<!-- 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 -->
</script>
</head>
<body>
<form>
To use form buttons:<br>
<input type=button value="Form A" NAME="OutlookOpen1"
OnClick="OpenOutlookDoc('IPM.Note.leave request')"><br><br>
<!--
-->
</form>
</body>
</html>

i published the form in exchange servers organizational form library.the
above HTML page is in my system.when i open the page and click the link
then,
from where IPM.Note.leave request is get ?is it taken the form from the
exchange server organizational form library? or from some where else?
is IPM.Note.form name is a ID to the forms?
kindly provide the details of how actuall flow of the control is going.

thx
mohan
 

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