Question

I'd like to write a macro for Outlook 2007 that can add/remove modules in the VBA editor. The VBA Extensibility library looks perfect, but properties like Application.VBE seem to be inaccessible.

In Excel, I would need to enable "Trust access to the VBA project object model". Unfortunately, this option is missing in Outlook 2007.

Does anyone know of a way around this?

Thanks in advance!

Was it helpful?

Solution

I worked around the limitations using SendKeys:

  • Alt-F11
  • Ctrl-M
  • Path to code module
  • Enter

Not elegant, but good enough.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top