Microsoft KB Archive/294434

From BetaArchive Wiki
Knowledge Base


OL2002: How to Programmatically Reference a COM Add-in

Article ID: 294434

Article Last Modified on 11/23/2006



APPLIES TO

  • Microsoft Outlook 2002 Standard Edition



This article was previously published under Q294434


SUMMARY

This article explains how to correctly reference a COM add-in that binds to Outlook.

NOTE: This article assumes that you have advanced knowledge about programming and creating custom solutions with Microsoft Office programs.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site:

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:

In the COM add-in, make sure to add the following line of code to the OnConnection subroutine of the add-in instance:

Application.COMAddIns.Item("MyOfficeAddin.Connect").Object = Me
                

Change "MyOfficeAddin" to reflect the name of your add-in in the project. Change "Connect" to reflect the name of your designer in the project.

Your code may look like the following code:

Private Sub IDTExtensibility2_OnConnection(ByVal Application As Object, _
         ByVal ConnectMode As AddInDesignerObjects.ext_ConnectMode, _
         ByVal AddInInst As Object, custom() As Variant)

   Application.COMAddIns.Item("MyAddin.Connect").Object = Me
End Sub
                

To instantiate the COM add-in from Microsoft Visual Basic for Applications or Microsoft Visual Basic Scripting Edition code:

Set myObj = Application.COMAddIns.Item("MyOfficeAddin.Connect").Object
                

Again, make sure "MyOfficeAddin" and "Connect" reflect the names that you created in your COM add-in project. You can then use the myObj variable to reference the objects that you created in the COM add-in.

REFERENCES

For additional information about creating Outlook COM Add-ins, click the article number below to view the article in the Microsoft Knowledge Base:

291163 OL2002: How to Create a COM Add-in for Outlook


For additional information about available resources and answersto commonly asked questions about Microsoft Outlook solutions, click the article number below to view the article in the Microsoft Knowledge Base:

287530 OL2002: Questions About Custom Forms and Outlook Solutions



Additional query words: OfficeKBHowTo OutSol OutSol2002

Keywords: kbhowto KB294434