Identify public folder that form is used in.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a custom Outlook form that is to be used in many public folders for a
post. In the script, how would I identify the folder that a user is starting
a new post so I can set some variables to match that folder.
Thanks,
 
Here's an example.

Function Item_Open()
MsgBox Application.ActiveExplorer.CurrentFolder.Name
End Function
 
Back
Top