Outlook VBA and MDE

  • Thread starter Thread starter Gary D.
  • Start date Start date
G

Gary D.

I would like to use some of my own Access2003 library functions (MDE file)
within Outlook2003.

I've tried to add a reference in Outlook but it won't accept it.

Is there a way to do this?
 
Not directly. You would have to migrate your library into a VBA code module
or VB 6 classes or code modules to use them within Outlook code.
 
Not directly. You would have to migrate your library into a VBA code module
or VB 6 classes or code modules to use them within Outlook code.

Thanks for the info.

How do I migrate my library into a VBA code module?
 
Open a VBA code module, perhaps in Outlook (Alt+F11, Insert, Code Module).
Copy your Access code over to the new module and rewrite it so it is not
dependent on living within Access.
 
Open a VBA code module, perhaps in Outlook (Alt+F11, Insert, Code Module).
Copy your Access code over to the new module and rewrite it so it is not
dependent on living within Access.

Thanks Ken.
 
Back
Top