I would like to use late binding to use the following reference :
Name : "Microsoft Windows Common Controls 6.0 (SP6)"
Filepath : "C:\Windows\System32\MSCOMCTL.OCX"
GUID : "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}"
I understood thanks to this topic the difference between early and late binding:
This is early binding: Dim olApp As Outlook.Application Set olApp = New Outlook.Application
And this is late binding: Dim olApp As Object Set olApp = CreateObject("Outlook.Application")
However, I do not know how to find my object name (see bold quoted text above). Every example on the internet uses Powerpoint or Outlook.application.
Any help? Thanks