
Programmatically post a .ppt file to an Exchange public folder
'Assuming m_Folder was set earlier in code
Set oMsg = m_Folder.Items.Add("IPM.Document.PowerPoint.Show.8")
oMsg.Attachments.Add strFilePath
oMsg.Subject = strSubject
oMsg.MessageClass = "IPM.Document.PowerPoint.Show.8"
oMsg.Save
oMsg.Display
I know that w/ Word and Excel you use the object.Post fuction; but how would you accomplish the same thing w/ PowerPoint?
TIA,
Bill Youngman