Tagged Questions
1
vote
2answers
163 views
What happens if I violate the requirements imposed on ProgIDs?
This MSDN article states that any ProgID must meet several formal requirements, length restriction included. However nothing is said about what happens if those are violated.
I found several places ...
1
vote
2answers
888 views
How to find out a COM prog id?
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");
0
votes
1answer
77 views
how do i know that the Type for Visual Studio instance is VisualStudio.DTE.9.0
using
System.Type type = System.Type.GetTypeFromProgID("VisualStudio.DTE.9.0");
i can get hold of the type for an instance of Visual Studio. My question is where was it specified that the type of ...
0
votes
1answer
248 views
Can multiple ProgIDs point to the same ClsID?
I am working on a set of what are essentially plugins, which are COM servers. Each plugin has a set of configuration data which is managed by another component, the primary key to the configuration ...