Chapter 23. Integrating DLLs and COM

VBA and Excel provide an extensive set of objects, properties, and methods that you can use to perform almost any imaginable task. However, in some areas those members don’t do exactly what you need or don’t do the task as simply as you might like. In those cases, you can extend your set of programming tools by bringing in functions from dynamic link libraries (DLLs) and objects from other Common Object Model (COM) applications.

Warning

DLLs and COM are Windows-only features. They aren’t present on the Macintosh.

DLLs grant you access to the low-level functions used by Windows itself. Just about any task that Windows performs can be accomplished in your Visual Basic code by accessing a system DLL.

COM is for higher-level tasks. Excel implements COM as the technology used to expose its objects, properties, and methods to Visual Basic. All of the other Office applications and many non-Microsoft applications implement COM, too. You can use any of those applications from Excel Visual Basic.

Tip

Code used in this chapter and additional samples are available in ch23.xls.

Get Programming Excel with VBA and .NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.