finding and displaying a published form

  • Thread starter Thread starter Gary Lemmon
  • Start date Start date
G

Gary Lemmon

There is a custom form that is located in the Personal Forms Library area.
I need to display this form for users to use on command. I have seen code
when a custom form has been associated as the default form for a folder but
that is not my situation. In fact there are several custom forms that the
user needs access to in the same area. When we get to the full install of
exchange server I will need to get the custom forms from the public area.

What are these locations in the object model?
Does any one have any sample code?

Thanks

G
 
Ok I found that solution
Set myFolder = Session.GetDefaultFolder(olFolderCalendar)
Set myItem = myFolder.Items.Add("IPM.Appointment.Test")
myItem.Display


who would of thought that would work. It is suppose to work for a system
published form too.
 
Back
Top