I'm trying to bullet proof an application I've written in Excel. In order to do so, I want to add late binding references whenever possible. Unfortunately, I do not know how to determine what the correct name is that I should be using for all references.
For example the File System Object can be referenced thus....
Dim oFs as Object
Set oFs = CreateObject("Scripting.FileSystemObject")
I can find out that "Scripting.FileSystemObject" is the correct name to use without googling by going to Microsoft's document page here. But no such page exists for the Object Library reference. So how can I find out what the correct name is for "Microsoft Office 16.0 Object Library"?