User Johannes Passing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T01:32:35Zhttp://stackoverflow.com/feeds/user/4372http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1729904/how-to-debug-driver-load-error/1730112#17301122Answer by Johannes Passing for How to debug driver load error?Johannes Passing2009-11-13T15:54:52Z2009-11-13T15:54:52Z<p>Enable "Show loader snaps" using gflags -- in the debug output, you should find information about which import the loader is not able to resolve.</p>
http://stackoverflow.com/questions/1661410/how-do-i-create-a-64-bit-native-atl-c-dll-in-visual-studio-2003/1665678#16656781Answer by Johannes Passing for How do I create a 64-bit native ATL C++ DLL in Visual Studio 2003?Johannes Passing2009-11-03T07:00:04Z2009-11-03T07:00:04Z<p>Have a look at <a href="http://sourceforge.net/projects/vsextcomp/" rel="nofollow">VSItanium </a>. From the description:</p>
<blockquote>
<p>The VSItanium plugin for Visual Studio .NET 2003 allows to compile Win32 Visual C++ projects with several external compilers, actually the Microsoft SDK 64bit Itanium and AMD Opteron compiler as well as the Intel C++ Itanium compiler.</p>
</blockquote>
<p>Concerning compiler choice -- if migrating to a newer VS version is not an option because of reliance on cl 13 (VS 2005 uses cl 14), you should be able to find a cl 13 supporting IA-64 and amd64 in WDK 3790.1830, IIRC. There should be an old SDK with a 64 bit-supporting cl 13, but I do not know which one.</p>
<p>If your project builds fine with newer compilers, you basically have free choice of WDK and SDK versions.</p>
http://stackoverflow.com/questions/1576907/automating-win32-driver-testing/1633102#16331022Answer by Johannes Passing for Automating Win32 Driver TestingJohannes Passing2009-10-27T19:24:58Z2009-10-27T19:24:58Z<p>It all depends a little on what kind of driver you are writing. But in many cases, writing an appropriate makefile (or something similar) that handles driver installation, start/stop, and launching of a test harness can already be good enough.</p>
<p>I also configure all of my test machines to automatically logon (AutoAdminLogon), map net drives, and launch an appropriate command prompt after startup. Running a specific test is then a matter of typing in a single command only.</p>
<p>One word concerning VirtualPC: VirtualPC is very handy for kernel mode development, but do not forget that it emulates a uniprocessor machine only -- so be sure to regularly test the code on a multiprocessor machine as well. That said, the VHD trick may seem handy, but it somewhat ties you to Virtual PC -- writing appropriate scripts that equally work on VirtualPC as on a real machine therefore seems a better approach to me.</p>
<p>Finally, consider it a shameless plug, but if you are looking for a unit testing framework for Windows kernel mode code, I have written one: <a href="http://www.cfix-testing.org/" rel="nofollow">cfix</a>.</p>
http://stackoverflow.com/questions/1468960/unit-and-integration-testing-in-c/1476496#14764960Answer by Johannes Passing for Unit and integration testing in C++Johannes Passing2009-09-25T10:15:19Z2009-09-25T10:15:19Z<p>Shameless plug: Have a look at <a href="http://www.cfix-testing.org/" rel="nofollow">cfix</a> and <a href="http://www.visualassert.com/" rel="nofollow">Visual Assert</a>.</p>
http://stackoverflow.com/questions/1102234/bsod-every-time-a-handle-to-a-driver-is-created/1116664#11166641Answer by Johannes Passing for bsod every time a handle to a driver is createdJohannes Passing2009-07-12T18:59:44Z2009-07-12T18:59:44Z<p>!analyze -v is your friend.</p>
http://stackoverflow.com/questions/1101196/problems-communicating-with-driver-from-user-mode/1116663#11166631Answer by Johannes Passing for problems communicating with driver from user modeJohannes Passing2009-07-12T18:57:24Z2009-07-12T18:57:24Z<p>Use <a href="http://technet.microsoft.com/en-us/sysinternals/bb896657.aspx" rel="nofollow">WinObj</a> and see whether the symbolic has been created successfully -- the link should show up under GLOBAL??. If not, your driver is faulty.</p>
<p>Btw. \\.\somename is correct.</p>
http://stackoverflow.com/questions/1067236/c-c-testing-framework-like-junit-for-java/1067867#10678671Answer by Johannes Passing for C/C++ testing framework (like JUnit for java)Johannes Passing2009-07-01T08:05:29Z2009-07-01T08:05:29Z<p>Shameless plug: If you target Windows and are using Visual Studio, check out <a href="http://www.cfix-testing.org/" rel="nofollow">cfix</a> and <a href="http://www.cfix-studio.com/" rel="nofollow">cfix studio</a>. </p>
<p>It is also compatible to WinUnit.</p>
http://stackoverflow.com/questions/1025942/windbg-using-known-module/1026126#10261261Answer by Johannes Passing for WinDbg using known moduleJohannes Passing2009-06-22T08:47:56Z2009-06-22T08:47:56Z<p>WinDBG tracks modules even after they have been unloaded to make debugging easier. </p>
<p>Normally, those unloaded modules should not show up in stack traces. If they do, the unload took place while the module was still in use (FreeLibrary does not prevent that). This premature unload is therefore a bug in your code.</p>
http://stackoverflow.com/questions/1008326/com-event-with-binary-data-in-arguments/1009053#10090530Answer by Johannes Passing for COM event with binary data in argumentsJohannes Passing2009-06-17T19:24:20Z2009-06-17T19:24:20Z<p>You basically have two options: use a SAFEARRAY of BYTEs or stuff the data into a BSTR. The latter, although ugly, used to be the <em>default hack</em> to pass binary data to VB6 components. Although I have never tried it, I guess it should work for .Net, too.</p>
http://stackoverflow.com/questions/1000577/can-i-stop-com-from-swallowing-uncaught-c-exceptions-in-the-callee-process/1001013#10010131Answer by Johannes Passing for Can I stop COM from swallowing uncaught C++ exceptions in the callee process?Johannes Passing2009-06-16T11:52:39Z2009-06-16T11:52:39Z<p>Have a look at <a href="http://msdn.microsoft.com/en-us/library/ms679274%28VS.85%29.aspx" rel="nofollow">Vectored Exception Handlers</a> -- depending on your exact use case, VEH could be used to intercept SEH exception handling and force crashes/dumps/whatever.</p>
http://stackoverflow.com/questions/1000335/how-to-preview-data-from-com-port-with-telnet-or-other-windows-tool/1000983#10009831Answer by Johannes Passing for How to preview data from COM port with telnet or other windows toolJohannes Passing2009-06-16T11:46:49Z2009-06-16T11:46:49Z<p>HyperTerminal can be used to communicate over/read from a serial port. But there are probably much better, more specialized tools around.</p>
<p>(Note that HyperTerminal is not included in Vista any more, but XP still has it.)</p>
http://stackoverflow.com/questions/990633/passing-user-context-to-from-impersonated-thread-to-outproc-com-object/991099#9910990Answer by Johannes Passing for Passing user context to from impersonated thread to outproc COM objectJohannes Passing2009-06-13T17:22:04Z2009-06-13T17:22:04Z<p>To have the server impersonate USR2, you have to use <a href="http://msdn.microsoft.com/en-us/library/cc246058.aspx" rel="nofollow">cloaking</a>. To enable cloaking, you either have to call <a href="http://msdn.microsoft.com/en-us/library/ms693736%28VS.85%29.aspx" rel="nofollow">CoInitializeSecurity</a> or <a href="http://msdn.microsoft.com/en-us/library/ms692692.aspx" rel="nofollow">CoSetProxyBlanket</a>.</p>
http://stackoverflow.com/questions/979735/breakpoint-on-api-exposed-from-com-interface/979844#9798441Answer by Johannes Passing for Breakpoint on api exposed from COM interface.Johannes Passing2009-06-11T07:47:31Z2009-06-11T07:47:31Z<p>Regardless of whether you use COM or not, you cannot put breakpoints on an interface: An interface is never executed, so there is no way to "break" on an interface.</p>
<p>If, however, you know that Ifoo is implemented by CFoo, you could, of course, set a breakpoint on CFoo::foo. </p>
http://stackoverflow.com/questions/975669/help-needed-for-dia-sdk-dbgeng/976487#9764870Answer by Johannes Passing for Help needed for DIA SDK & DbgEngJohannes Passing2009-06-10T15:51:28Z2009-06-10T15:51:28Z<p>It is the other way round -- dbghelp is based on DIA.</p>
http://stackoverflow.com/questions/976012/diagnosing-an-app-that-fails-to-halt/976463#9764631Answer by Johannes Passing for Diagnosing an app that fails to haltJohannes Passing2009-06-10T15:46:27Z2009-06-10T15:46:27Z<p>The finalizer thread is idle and is waiting for work -- its trace looks fine. Theread 0 also looks fine and is idle -- it waits for the next UI message. </p>
<p>Can you give some details on how you 'exit' the application? Given that the message loop is still running, it seems to me that something is wrong with your close-application logic.</p>
http://stackoverflow.com/questions/975311/why-do-com-events-cease-to-work-when-we-use-unit-testing-with-microsoft-visual-st/976409#9764091Answer by Johannes Passing for Why do COM events cease to work when we use unit testing with Microsoft Visual Studio 2008?Johannes Passing2009-06-10T15:37:14Z2009-06-10T15:37:14Z<p>Without further details, this is hard to diagnose. However, it is possible that this is actually an apartment issue: IIRC, VS runs tests in an STA. If your application uses an MTA to run the same code, it could be that you are facing deadlocking or similar issues.</p>
http://stackoverflow.com/questions/938252/can-i-disable-one-or-more-processors-in-multiprocessor-machine/938514#9385140Answer by Johannes Passing for Can I disable one or more processors in multiprocessor machine?Johannes Passing2009-06-02T08:34:11Z2009-06-02T08:34:11Z<p>Edit boot.ini, add /NUMCPU=1, and reboot. This will instruct Windows to ignore all but one core/CPU.</p>
http://stackoverflow.com/questions/892715/loading-interacting-with-a-vb6-com-dll-from-a-64bit-application/893230#8932300Answer by Johannes Passing for Loading/interacting with a vb6 COM dll from a 64bit ApplicationJohannes Passing2009-05-21T14:32:47Z2009-05-21T14:32:47Z<p>If you have lots of existing VB6 code that uses to run in-process, I'd first question if migrating to 64 bit is really worth the effort. 64 bit has many advantages for server apps, but for desktop apps, 32 bit is often completely sufficient. And as WOW64 can be expected to be available for at least a decade, there is little speaking against running 32 bit apps on 64 bit Windows.</p>
<p>The point is, although it is possible that by using out-or-process servers you could tweak your app so that it runs at least partially in 64 bit mode, this will probably have a significant impact on performance (and also on memory overhead). Odds are that the customer therefore has absolutely no benefit from choosing the 64-bit version of your app.</p>
<p>That said, I'd say 2) or 3) would be the natural choice. 2) is certainly easier to implement, but 3) gives you more control of how many out-or-process servers should be created and how their lifetime is managed.</p>
http://stackoverflow.com/questions/861871/why-does-com-ignore-the-apartment-threading-model/862125#8621251Answer by Johannes Passing for Why does COM+ ignore the apartment threading model?Johannes Passing2009-05-14T08:10:45Z2009-05-14T08:10:45Z<p>STA guarantees that your object is only accessed from a single, specific thread -- no protection against shared variable is required.</p>
<p>I remember that for VB6, there was a special mode (I do not recall how it was named): You could allow COM+ to spawn up multiple STAs, each using a dedicated object. The variables of these objects, however, were treated as thread-local storage -- so although there are multiple instances of your COM class being accessed from multiple threads, no sharing of variables is taking place. Is it possible that you are using this feature?</p>
http://stackoverflow.com/questions/858227/how-do-i-start-an-out-of-process-com-server-as-another-more-privileged-user/858456#8584561Answer by Johannes Passing for How do I start an out of process COM server as another (more privileged) userJohannes Passing2009-05-13T14:52:54Z2009-05-13T14:52:54Z<p>Use RunAs -- see <a href="http://msdn.microsoft.com/en-us/library/ms680046%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms680046(VS.85).aspx</a>. </p>
<p>N.B. This setting can also be configured via dcomcnfg (Win2000) or comexp.msc (WinXP+) under "DCOM config"</p>
<p>If your object is implemented as an InProc server, you may combine this with a DLL surrogate (see <a href="http://msdn.microsoft.com/en-us/library/ms691260%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms691260(VS.85).aspx</a>).</p>
http://stackoverflow.com/questions/857507/wchar-array-not-properly-marshalled/857738#8577382Answer by Johannes Passing for WCHAR array not properly marshalledJohannes Passing2009-05-13T12:43:32Z2009-05-13T12:43:32Z<p>IIRC, the typelib marshaller ignores the size_is attribute -- thus, only 1 char is marshaled.</p>
http://stackoverflow.com/questions/852497/what-is-required-to-enable-marshaling-for-a-com-interface/852842#8528421Answer by Johannes Passing for What is required to enable marshaling for a COM interface?Johannes Passing2009-05-12T13:36:56Z2009-05-12T13:36:56Z<p>Typelibs are one way to support marshalling, proxy/stub DLLs (genereated from the IDL) are another. In both cases, however, you'll need the IDL in the first place. </p>
<p>If Microsoft does not provide a typelib/proxy DLL or IDL for this interface, odds are that there is a reason for this: Maybe the interface uses non-marshalable data structures, requires function pointers to be passed as method parameter or things like this? If this is the case, there is just no way to make this interface work for DCOM.</p>
<p>Maybe you can reconstruct the IDL, but quite possibly, it just will not be feasible. Then your last fallback could be to use custom or handler marshalling, but that's probably not worth the effort. That said, I'd recommend considering other routes that does not involve using interfaces for DCOM that were not designed to be used for DCOM.</p>
http://stackoverflow.com/questions/849701/find-com-dll-path-from-com-interop-assembly/851360#8513601Answer by Johannes Passing for Find COM DLL path from Com Interop AssemblyJohannes Passing2009-05-12T06:11:15Z2009-05-12T06:11:15Z<p>Once you've created an object from the respective COM server, its DLL must have been loaded. So you could use P/Invoke and call GetModuleHandle( "mycomserver.dll" ) -- that gives you the path of the DLL.</p>
http://stackoverflow.com/questions/850530/kernel-mode-driver-write-to-file/851344#8513441Answer by Johannes Passing for kernel mode driver write to fileJohannes Passing2009-05-12T06:06:06Z2009-05-12T06:06:06Z<p>Schedule workitems (IoAllocateWorkItem/IoQueueWorkItem) and handle all file I/O from within the workitem callback routines.</p>
<blockquote>
<p>I'm not sure if it is a good idea to let the kernel driver write to a file in the first place. The best way to do that IMHO is to provide a user space program that communicates with the driver, gets the data and then writes it to disk.</p>
</blockquote>
<p>This is true for Unix, but not for Windows.</p>
http://stackoverflow.com/questions/840252/comexception-8004014-using-shockwaveflashobjects-in-vs2008-on-vista-x64/840798#8407980Answer by Johannes Passing for COMException (8004014) using ShockwaveFlashObjects in VS2008 on Vista x64Johannes Passing2009-05-08T16:51:19Z2009-05-08T16:51:19Z<p>80040154 is REGDB_E_CLASSNOTREG. Most likely, your code runs in a 64 bit process but Shockwave is only installed for 32 bit.</p>
http://stackoverflow.com/questions/831622/creating-long-lived-server-for-other-applications-on-windows/833167#8331671Answer by Johannes Passing for creating long-lived server for other applications on windowsJohannes Passing2009-05-07T06:32:08Z2009-05-07T06:32:08Z<p>Your requirements are a bit contradictory -- if the server has to run indefinitely, regardless of whether there are clients to serve or not, and the process has to be shared among all clients, regardless of the session they run in, Windows Services are the way to go.</p>
<p>If you want to have the server only run when there are clients and maybe (or not) want those clients to share the same server process, COM Out Of Process Servers can be an option. </p>
<p>In case of COM, you would have to use DCOM to communicate with the server process. In case of services, you could use DCOM, named pipes, RPC, or some other IPC mechanism. </p>
<p>If you wish to code the server in C#, however, DCOM seems a bit of an odd choice -- it is possible to create DCOM servers in C#, but it is really awkward. As Kevin noted, WCF/WAS/Remoting might be the easier choice. But keep in mind that such a solution will almost necessarily have a significantly higher overhead w.r.t. memory consumption than a native COM server or service. If this piece of software is going to be installed on client machines, I would therefore prefer a native solution.</p>
http://stackoverflow.com/questions/827988/when-and-why-use-coloadlibrary/828571#8285713Answer by Johannes Passing for When and why use CoLoadLibrary?Johannes Passing2009-05-06T08:22:48Z2009-05-06T08:22:48Z<p>Have a look at the code:</p>
<pre><code>mov edi,edi
push ebp
mov ebp,esp
push 8
push 0
push dword ptr [ebp+8]
call dword ptr [ole32!_imp__LoadLibraryExW (71eb1214)]
pop ebp
ret 8
</code></pre>
<p>So it just calls:</p>
<pre><code>LoadLibraryEx( FileName, NULL, LOAD_WITH_ALTERED_SEARCH_PATH ).
</code></pre>
<p>Presumably, the routine merely exists for backwards compatibility -- it probably has its roots in Win16.</p>
http://stackoverflow.com/questions/821322/how-should-i-check-that-out-params-in-com-can-be-used/821673#8216732Answer by Johannes Passing for How should I check that [out] params in COM can be used?Johannes Passing2009-05-04T19:47:16Z2009-05-04T19:47:16Z<p>COM server methods that return a success HRESULT, yet set some of their output parameters to NULL are not very common. There are a few cases (IClientSecurity::QueryBlanket comes to mind) where this is used, but usually the client may expect all output parameters to be non-NULL if the method returned successfully. </p>
<p>It is, after all, a matter of how the method is documented. In the default case, however, I would consider 1. to be a safe way to go.</p>
http://stackoverflow.com/questions/705093/should-out-params-be-set-even-if-com-function-fails/821625#8216251Answer by Johannes Passing for Should out params be set even if COM function fails?Johannes Passing2009-05-04T19:36:34Z2009-05-04T19:36:34Z<p>While the other answers are not wrong, they miss a very important point -- a COM server that intends to return a failure HRESULT <strong>MUST</strong> set all [out] parameters to NULL. This is not merely a matter of good style, it is required by COM and not adhering to it can cause random crashes when there is marshaling involved.</p>
<p>That said, the *pRet = 0; in the original code is not redundant but correct and required.</p>
http://stackoverflow.com/questions/820614/com-ole-activex-idispatch-confusion/820834#8208340Answer by Johannes Passing for COM / OLE / ActiveX / IDispatch confusionJohannes Passing2009-05-04T16:36:21Z2009-05-04T16:36:21Z<p>Regarding OLE: COM has its roots in OLE. But today, OLE may be considered to be built on top of COM and is mostly used for what its name suggests -- document linking and embedding. While COM itself defines only a couple of interfaces itself (IUnknown, IClassFactory, IMalloc etc), OLE adds a whole bunch of additional interfaces like IMoniker, IOleItemComtainer, etc.</p>
<p>To sum up: COM is the foundation, ActiveX and OLE are layers on top of COM.</p>
http://stackoverflow.com/questions/1067236/c-c-testing-framework-like-junit-for-java/1067338#1067338Comment by Johannes Passing on C/C++ testing framework (like JUnit for java)Johannes Passing2009-07-01T08:08:03Z2009-07-01T08:08:03ZWell, yes. But a good unit testing framework really does a lot more than that.http://stackoverflow.com/questions/1006381/how-to-transfer-uint64-to-2-dwords/1006401#1006401Comment by Johannes Passing on How to transfer UINT64 to 2 DWORDS?Johannes Passing2009-06-19T14:26:41Z2009-06-19T14:26:41ZPax, your code is not portable either -- mind you, the width of int and long differs among platforms and may even be equal.http://stackoverflow.com/questions/981447/debug-error-runtime-needed-for-name-exe-occurs-while-cusing-com-in-vc-projeComment by Johannes Passing on DEBUG ERROR : Runtime needed for <name.exe> occurs while cusing COM in vc++ project?Johannes Passing2009-06-11T15:30:59Z2009-06-11T15:30:59ZCan you please fix your typos first? This question is hardly readable.http://stackoverflow.com/questions/975669/help-needed-for-dia-sdk-dbgeng/976487#976487Comment by Johannes Passing on Help needed for DIA SDK & DbgEngJohannes Passing2009-06-11T08:01:48Z2009-06-11T08:01:48ZIt is true that dbghelp.dll does not (dynamically) link against msdia80.dll, but dbghelp either statically links against DIA or uses the same code base: Just compare the output of x msdia80!*Dia* and x dbghelp!*Dia* and see what I mean.http://stackoverflow.com/questions/117755/is-there-a-faster-way-of-getting-a-char-from-a-variantt-than-const-charbs/118442#118442Comment by Johannes Passing on Is there a faster way of getting a char* from a _variant_t than (const char*)(_bstr_t)Johannes Passing2009-06-10T15:55:00Z2009-06-10T15:55:00ZYou are storing ANSI chars in a BSTR? Urgh.
On Win32, BSTRs are always wide char -- everything else is a dirty hack.http://stackoverflow.com/questions/974727/main-test-environment-should-it-be-the-common-os-or-the-future-os/974898#974898Comment by Johannes Passing on Main test environment - should it be the common OS or the future OS?Johannes Passing2009-06-10T12:13:06Z2009-06-10T12:13:06ZSorry, but calling Windows 7 an "untested system" is utter BS.http://stackoverflow.com/questions/892715/loading-interacting-with-a-vb6-com-dll-from-a-64bit-applicationComment by Johannes Passing on Loading/interacting with a vb6 COM dll from a 64bit ApplicationJohannes Passing2009-05-22T07:39:43Z2009-05-22T07:39:43ZSuch communication should normally work smoothly -- especially when all interfaces are oleautomation-compatibe, like in your case.http://stackoverflow.com/questions/892715/loading-interacting-with-a-vb6-com-dll-from-a-64bit-application/893230#893230Comment by Johannes Passing on Loading/interacting with a vb6 COM dll from a 64bit ApplicationJohannes Passing2009-05-22T07:38:31Z2009-05-22T07:38:31ZI see. I think an important aspect to consider before making a decision is to assess how much communication would have to take place between the AutoCad process and a (32 bit) OOP-server. For objects that are used very frequently, I'd seriously consider reimplementing them in C++ or whatever language s.t. they can be hosted in the 64 bit process. For not-so-frequently used objects, an out-of-process solution may be adequate. I think without such consideration, it is hard to judge whether the out-of-process strategy really is feasible.http://stackoverflow.com/questions/861871/why-does-com-ignore-the-apartment-threading-model/862125#862125Comment by Johannes Passing on Why does COM+ ignore the apartment threading model?Johannes Passing2009-05-14T12:38:39Z2009-05-14T12:38:39ZSee <a href="http://www.tech-archive.net/Archive/VC/microsoft.public.vc.atl/2009-03/msg00056.html" rel="nofollow">tech-archive.net/Archive/VC/…</a>.http://stackoverflow.com/questions/861871/why-does-com-ignore-the-apartment-threading-model/862125#862125Comment by Johannes Passing on Why does COM+ ignore the apartment threading model?Johannes Passing2009-05-14T09:02:24Z2009-05-14T09:02:24ZOk. Are you using in-process COM+? If so, are the callers of the respective objects running in STAs, too? If 2 callers running in 2 separate STAs both create an instance of the respective objects and call a method on it, then these calls will run in parallel. Could that be the case?http://stackoverflow.com/questions/861871/why-does-com-ignore-the-apartment-threading-model/862125#862125Comment by Johannes Passing on Why does COM+ ignore the apartment threading model?Johannes Passing2009-05-14T08:22:33Z2009-05-14T08:22:33ZAre you using VB6?http://stackoverflow.com/questions/857507/wchar-array-not-properly-marshalled/857783#857783Comment by Johannes Passing on WCHAR array not properly marshalledJohannes Passing2009-05-13T14:28:58Z2009-05-13T14:28:58ZConcerning the quote: While it is true that custom marshaling cannot be used for COM+, you may of course use a proxy/stub DLL generated from the IDL for COM+. This is a common misconception, by the way.http://stackoverflow.com/questions/857507/wchar-array-not-properly-marshalledComment by Johannes Passing on WCHAR array not properly marshalledJohannes Passing2009-05-13T12:39:25Z2009-05-13T12:39:25ZWhy not use [string]?http://stackoverflow.com/questions/849701/find-com-dll-path-from-com-interop-assembly/849802#849802Comment by Johannes Passing on Find COM DLL path from Com Interop AssemblyJohannes Passing2009-05-12T06:09:10Z2009-05-12T06:09:10ZI guess this will not work for (MSI) advertiesed components -- it is thus a rather brittle solution.http://stackoverflow.com/questions/827988/when-and-why-use-coloadlibrary/828571#828571Comment by Johannes Passing on When and why use CoLoadLibrary?Johannes Passing2009-05-06T10:15:21Z2009-05-06T10:15:21ZNone that I can think of -- the functionality CoLoadLibrary once implemented seems to have been removed, so this routine really is just compatibilty baggage.