I'm working with a client whose previous programmer used early binding for an object....
Dim Parser As BCPARSERLib.Parser
Set Parser = New BCPARSERLib.Parser
The Tools > Reference in VBA says it is BCParser 4.3 Type Library
I prefer to use early binding but have not been able to find the correct string name for
Dim Parser As Object
Set Parser = CreateObject("xxx")
where xxx will be the correct string
Does anyone have experience with that object or know how I can dig out the string name please?
Thanks
Ananda