In Outlook 2010 I created a button on the Home tab which opens a customized form. It works great but it's VBA.
I need to create a com object instead of a vba macro solution so that it can be deployed to all the users in the new build.Code:Sub DisplayForm() Set myFolder = Session.GetDefaultFolder(olFolderInbox) Set myItem = myFolder.Items.Add("IPM.Note.TelephoneMsg") myItem.Display End Sub
I need to rewrite it in VB.Net. What is the equivalent syntax to get it to work and how do I turn it into a MSI file for deployment.


Reply With Quote