No, you can't early bind to get intellisense on that.
What I usually do myself is set up public properties and methods in the
designer that end up exposed to the property page. Then if a configuration
in the property page is changed I can call the method in the addin to update
things. I can read and set the public properties as needed to get/send
information with the addin.
BTW, if you need reference to the Outlook.Application object in your
property page code make sure to declare it this way to get a copy of the
trusted object from your addin:
Implements Outlook.PropertyPage
Dim objSite As Outlook.PropertyPageSite
' In the UserControl_InitProperties procedure:
Set objSite = Parent
Set golApp = objSite.Application 'golApp is global Outlook object for PP

Signature
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
> Hi Ken,
>
[quoted text clipped - 10 lines]
> give me intellisense access to the public variables in
> MyOfficeAddIn.Connect?