Click here to Skip to main content
15,915,093 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: property info error Pin
Robert Rohde22-Dec-05 10:20
Robert Rohde22-Dec-05 10:20 
QuestionContextMenuStrip and DefaultItem Pin
cual15-Dec-05 7:22
cual15-Dec-05 7:22 
Questionopen forms of an external application? Pin
LordZoster14-Dec-05 11:24
LordZoster14-Dec-05 11:24 
AnswerRe: open forms of an external application? Pin
Dave Kreskowiak14-Dec-05 12:26
mveDave Kreskowiak14-Dec-05 12:26 
GeneralRe: open forms of an external application? Pin
LordZoster14-Dec-05 22:34
LordZoster14-Dec-05 22:34 
AnswerRe: open forms of an external application? Pin
Ingo14-Dec-05 21:36
Ingo14-Dec-05 21:36 
QuestionAssociate File Extension in WinCE 5.0 - CF 1.0 SP2 C# Pin
Marco [Stinger]14-Dec-05 4:55
Marco [Stinger]14-Dec-05 4:55 
AnswerRe: Associate File Extension in WinCE 5.0 - CF 1.0 SP2 C# Pin
Ingo14-Dec-05 21:50
Ingo14-Dec-05 21:50 
QuestionCF 1.0 SP3 - WinCE - FullScreen and Controls.Clear() - Add() Pin
Marco [Stinger]14-Dec-05 2:09
Marco [Stinger]14-Dec-05 2:09 
AnswerRe: CF 1.0 SP3 - WinCE - FullScreen and Controls.Clear() - Add() Pin
Ingo14-Dec-05 3:32
Ingo14-Dec-05 3:32 
GeneralRe: CF 1.0 SP3 - WinCE - FullScreen and Controls.Clear() - Add() Pin
Marco [Stinger]14-Dec-05 4:52
Marco [Stinger]14-Dec-05 4:52 
GeneralRe: CF 1.0 SP3 - WinCE - FullScreen and Controls.Clear() - Add() Pin
Ingo14-Dec-05 21:43
Ingo14-Dec-05 21:43 
QuestionComboBox Pin
Assaf8213-Dec-05 14:24
Assaf8213-Dec-05 14:24 
AnswerRe: ComboBox Pin
Christian Graus13-Dec-05 15:01
protectorChristian Graus13-Dec-05 15:01 
QuestionRegistry search Pin
Yevgeny Efter13-Dec-05 8:57
Yevgeny Efter13-Dec-05 8:57 
AnswerRe: Registry search Pin
Ingo14-Dec-05 1:19
Ingo14-Dec-05 1:19 
GeneralRe: Registry search Pin
HakunaMatada16-Dec-05 0:14
HakunaMatada16-Dec-05 0:14 
GeneralRe: Registry search Pin
Ingo16-Dec-05 0:22
Ingo16-Dec-05 0:22 
QuestionMSH For Building Projects Pin
Joshua Nussbaum13-Dec-05 7:21
Joshua Nussbaum13-Dec-05 7:21 
AnswerRe: MSH For Building Projects Pin
Jared Parsons20-Dec-05 5:48
Jared Parsons20-Dec-05 5:48 
QuestionProblem saving XML file through XmlDocument Pin
Ritesh Mehrotra13-Dec-05 1:41
Ritesh Mehrotra13-Dec-05 1:41 
QuestionMD5 checksum test for COM-DLLs Pin
Ingo13-Dec-05 1:04
Ingo13-Dec-05 1:04 
AnswerRe: MD5 checksum test for COM-DLLs Pin
Phillip M. Hoff22-Dec-05 18:46
Phillip M. Hoff22-Dec-05 18:46 
(You've probably found your answer already, but oh well.)

I'm not positive about this (and am too lazy to doublecheck), but I think the wrappers for the COM objecs in the interop assembly will have the CLSID attached to them via attributes. Assuming that, one could then use reflection to grab the CLSID for the COM wrapper being used, then open up the registry key associated with that CLSID and grab the location of the binary.

Example:

For the COM object MyOldCOMObject with CLSID "4C6055D8-84B9-4111-A7D3-6623894EEDB3", the interop assembly should generate something like this class definition:

[Guid("4C6055D8-84B9-4111-A7D3-6623894EEDB3")]
public class MyOldCOMObjectClass : IMyOldCOMObject
{
}

If so, then the registry should have a key like this:

HKEY_CLASSES_ROOT\CLSID\{4C6055D8-84B9-4111-A7D3-6623894EEDB3}\InprocServer32\(Default): C:\MyOldApplication\MyOldCOMServer.exe

-- modified at 0:47 Friday 23rd December, 2005 (CP doesn't seem to like my registry key example, even though preview works.)
GeneralRe: MD5 checksum test for COM-DLLs Pin
Ingo28-Dec-05 22:19
Ingo28-Dec-05 22:19 
QuestionVB.Net Excel Pin
fasttaxi12-Dec-05 23:32
fasttaxi12-Dec-05 23:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.