I'd like to access a COM library via late binding.
How can I find out its progID?

Type oClassType = Type.GetTypeFromProgID("THE MISSING PROGID");
link|improve this question

More good answers in this question: stackoverflow.com/questions/1253368 – Kim Gräsman Aug 16 '09 at 7:34
feedback

2 Answers

up vote 3 down vote accepted

The progID is generally going to be of the form Library.Class, you can view what classes a COM library exposes using oleview

The feature you want in oleview is View TypeLib (three little red triangles). The Library name will be at the top and you will want to use the name of the class as seen under CoClasses

link|improve this answer
Thanks a lot. I just had to manually download (and register) iviewers.dll from some site via Google. Somehow this DLL wasn't included in the download and I also couldn't find it on the systsem. – Marc Aug 14 '09 at 6:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.