opening the form

  • Thread starter Thread starter Mohan
  • Start date Start date
M

Mohan

hello sir,
kindly explain the following function.
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)
}
}

thx
mohan
 
It's a function to launch a custom form. What do you want to know that the
Help topics for the relevant methods (GetNameSpace, GetDefaultFolder,
Items.Add) do not tell you?
 
Back
Top